*{
    padding: 0 ;
    margin: 0 ;
    box-sizing: border-box;
}
body{
    font-family: 'Outfit';
    background: white;
}
.contact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: solid;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}
.contact-left textarea{
    height: 140px;
    width: 400px;
    padding-top: 15px;
    border-radius: 20px;
    resize: none;
}
.contact-inputs:focus{
    border: 2px solid #ff994f;
}
.contact-inputs::placeholder{
    color: #a9a9a9
}
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: 2px solid transparent; /* Change this line */
    border-radius: 50px;
    background: grey;
    cursor: pointer;
}
.contact-left button img{
    height: 15px;
}
.contact-right img{
    width: 500px;
}

@media (max-width:800px) {
    .contact-inputs, .contact-left textarea{
        width: 80vw;
    }
}

.contact-left button:hover {
    border: 2px solid orange;
}

.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    
    border-radius: 50px;
    background: grey;
    cursor: pointer;
}
.button-container {
    width: 400px;          /* same as inputs */
    display: flex;
    justify-content: center; /* push button to the right */
}
.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: grey;
    cursor: pointer;
}


.button-container {
    width: 400px;      
    display: flex;
    justify-content: center;
}


.contact-left-title h2{
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
    /*font-size: 2.5vw;*/
    margin-bottom: 5px;
    width: 400px;
    white-space: nowrap;
}
.contact-left-title hr{
    border: none;
    width: 400px;
    height: 5px;
    background-color: #666;
    border-radius: 10px;
    margin-bottom: 20px;
}


.contact-left-title hr{
    border: none;
    width: 400px;
    height: 5px;
    background-color: #666;
    border-radius: 10px;
    margin-bottom: 20px;
}
@media (max-width:800px) {
    .contact-inputs,
    .contact-left textarea,
    .button-container,
    .contact-left-title hr 
    {
        width: 80vw;   /* match the inputs */
    }
}