#contact_label{
    width: 100%;
    height: fit-content;
    padding: 0;
    padding-bottom: 30px;
    padding-inline: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 60px;
    background-color: #f2f2f2;

}

.error{
    color:red;
}
#contact_label #separative_border{
    width: 100%;
    max-width: 600px;
    height: 1.5px;
    background-color: rgba(32, 32, 32, 0.323);
}
#contact_label h2{
    font-size: 48px;
    text-align: center;
}

#contact{
    width: 100%;
    height: fit-content;
    padding: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    column-gap: 100px;
    background-color: #f2f2f2;
}

#contact .left{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    row-gap: 0;
}
#contact .left #logo{
    height: auto;
    width: 200px;
}

#contact .left .contact_info_wrapper{
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    width: fit-content;
    height: fit-content;
    text-decoration: none;
}
#contact .left .contact_info_wrapper span{
    color: #2f404d;
}
#contact .left .contact_info_wrapper:hover{
    text-decoration: underline;
}

#contact .left #contact_info_wrapper_1{
    margin-top: 60px;
}

#contact .left  .social_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin-top: 30px;
    column-gap: 15px;
}
#contact .left  .social_wrapper a{
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
#contact .left  .social_wrapper a:hover{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
#contact .left  .social_wrapper a svg{
    width: 30px;
    height: auto;
}

#contact form{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
#contact form .input_wrapper{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

#contact form .input_wrapper label{
    font-size: 14px;
}
#contact form .input_wrapper input,
#contact form .input_wrapper textarea{
    width: 300px;
    outline:none;
    border:none;
    padding: 10px;
    background-color: #e1e1e1;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-bottom: 1px solid grey;
}
#contact form .input_wrapper textarea{
    resize: vertical;
}

#contact form #contact_submit_btn{
    width: fit-content;
    height: fit-content;
    padding: 15px 25px;
    background-color: #2f404d;
    color:#EAEAEA;
    border: none;
    outline: none;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 550;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

#contact form #contact_submit_btn:hover{
    background-color: #4f6d84;

}


@media (max-width: 800px){
    #contact{
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
        padding-inline: 20px;
    }
    #contact_label{
        padding: 20px;
    }

    #contact .left .contact_info_wrapper{
        padding: 15px;
        margin-top: 0;
        width: 100%;
        justify-content: flex-start;
    }
    #contact .left  .social_wrapper{
        column-gap: 10px;
        justify-content: center;
        width: 100%;
    }
    #contact .left .social_wrapper a{
        padding: 10px 15px;
    }
    #contact .left .social_wrapper a svg{
        width: 40px;
    }

    #contact form .input_wrapper input,
    #contact form .input_wrapper textarea{
        font-size: 20px;
    }
}

@media (max-width: 490px) {
    #contact_label h2{
        font-size: 28px;
        width: 100%;
    }
    
}
@media (max-width: 420px){
    #contact{
        padding: 60px 20px;
    }
    #contact_label{
        padding: 20px;
    }

    #contact form{
        width: 100%;
    }
    #contact form .input_wrapper{
        width: 100%;
    }
    #contact form .input_wrapper input,
    #contact form .input_wrapper textarea{
        width: 100%;
    }
}