body{
    background-color: #F4F7FA;
}
#contact-desc{
    margin-top: 20px;
}
.contact-page{
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.contact-div{
    margin-top: 35px;
    background-color: white;
    border: 1px solid #E7E9ED;
    border-radius: 10px;
    padding: 20px;
    padding-top: 0;
    padding-bottom: 30px;
    min-width: 380px;
    width: fit-content;
}
.contact-box{
    display: flex;
    column-gap: 50px;
}
.label{
    font-weight: bold;
    font-size: 17px;
    padding: 10px;
    padding-left: 0;
    border-radius: 10px;
    margin-top: 30px;
}
.inputarea{
    width: 100%;
    resize: none;
    font-size: 15px;
    align-content: center;
    border: 1px solid#E7E9ED;
    border-radius: 6px;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.inputarea:focus{
    outline: none;
    border: 1px solid #abadb1;
}
.remember-div{
    margin-top: 15px;
    display: flex;
    align-content: center;
    align-items: center;
    height: fit-content;
    column-gap: 8px;
}
#remember-label{
    font-size: 15px;
}
#remember{
    color: red;
}
.log-contact-btn{
    background-color: #473BF0;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    color: white;
    font-weight: bold;
    border: none;
    margin-top: 20px;
}
#sp-2{
    color: #473BF0;
}
#special-text{
    margin: 20px;
    margin-bottom: 50px;
}
.more-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.detail{
    margin: 25px;
}
.d-label{
    font-weight: bold;
    font-size: 18px;
    margin: 15px;
    margin-left: 0;
}
.d-text{
    display: block;
}
#message{
    text-wrap: wrap;
    resize: both;
    /* width: fit-content; */
    height: fit-content;
}
@media screen and (max-width:400px) {
    .contact-div{
        width: unset;
        margin-bottom: 50px;
        min-width: unset;
    }
    #special-text{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}
@media screen and (max-width:700px) {
    .contact-box{
        flex-direction: column;
    }
}