/*css*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.contact-container{
    display:flex;
    flex:1;
    align-items: center;
    justify-content: space-evenly;
}
.contact-left{
    display:flex;
    flex-direction: column;
    align-items: start;
    gap:20px;
}
.contact-left-title h2{
    font-family: "Codeclight";
    font-weight: 900;
    color: #0057ad;
    font-size:40px;
    margin-bottom: 5px;
}
.contact-left-title hr{
    border:none;
    width: 120px;
    height: 5px;
    background-color: #077bff;
    border-radius: 12px;
    margin-bottom: 20px;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-size: 14px;
    font-weight:500;
    color: #000000;
    border-radius: 50px;
}
.contact-left textarea{
    height:140px;
    padding-top: 15px;
    border-radius: 15px;
}
.contact-inputs:focus{
    border: 2px solid #ff994f;
}
.contact-inputs::placeholder{
    color: rgb(119, 119, 119);
}
.contact-left button{
    display: flex;
}
.contact-left button{
    display:flex;
    align-items: center;
    padding:15px 30px;
    font-size: 16px;
    color:#3f3f3f;
    gap: 12px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}
.contact-left button img{
    height: 15px;
}
button:hover{
    background-color: rgb(25, 103, 177);
    color: white;
}
input, textarea, button{
    background-color: rgb(211, 241, 250);    
}
.contact-right img{
    width:575px;
}
.box{ 
    display:flex;  
    gap: 45px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: auto;
    padding-bottom: 50px;
}
.icon{ 
    width:55px;
}

@media screen and (max-width: 1155px) {
html, body {
    height: auto;
}
input, textarea, button {
    align-self: center;    
}
.contact-container{
    justify-content: center;
    align-items: center;
}
.contact-right img{
    display: none;
}
.contact-left-title h2{
    padding:30px;
}
}

@media screen and (max-width: 475px) {
.contact-container{
    padding:10px;
}
.contact-inputs{
    max-width: 400px;
    width:90%;
}
.contact-left-title h2{
    font-size:32px;
}
}