*{
    padding: 0;
    margin: 0;
   
}
body{
    overflow: hidden;
}
.container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    font-family: "Montserrat", sans-serif;
    
}
.left{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}
.left h5{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.02em;
    font-family: "Montserrat", sans-serif;

}
.left form{
    width: 50%;
    height:  450px;
    gap: 32px;
    opacity: 0px;
    font-family: "Montserrat", sans-serif;

}
.left_input_div{
    width: 100%;
    height:  40px;
    margin-top: 25px;
    font-family: "Montserrat", sans-serif;
}
.left_input_div input{
    color: #292929;
    width: 95%;
    height:  40px;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    border-radius: 4px;
    padding-left: 15px;
    font-family: "Montserrat", sans-serif;
}
.right{
    width: 60%;
    height: 100vh;
}
.div_img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.div_bottom{
    width: 100%;
    height:  40px;
    margin-top: 25px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    
}
.div_bottom h6{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #000000;
    font-family: "Montserrat", sans-serif;

}
.div_bottom h6 a{
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    text-align: left;
    font-family: "Montserrat", sans-serif;

}
.left form button{
    width: 100%;
    height: 56px;
    padding: 16px 32px 16px 32px;
    gap: 8px;
    border-radius: 8px;
    opacity: 0px;
    color: white;
    background: linear-gradient(103.34deg, #3A86F7 0%, #1C52D9 100%);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    border: solid #3A86F7 1px;
}
.alert-danger {
    color: red;
    font-weight: bold;
    margin-top: 20px;
}
.left form button:hover{
    background: white;
    color: #3A86F7;
    border: solid #3A86F7 1px;
    transition: 1s;
}


@media screen and (max-width: 1200px){
    .left {
        width: 40%;
    }
    .right{
        width:60%;
    }
    .left form {
        width: 85%;
    }

}
@media screen and (max-width: 800px){
    .left {
        width: 50%;
    }
    .right{
        width:50%;
    }
    .left form {
        width: 85%;
    }

}

@media screen and (max-width: 600px){
    .left {
        width: 70%;
    }
    .right{
        width:30%;
    }
    .left form {
        width: 87%;
    }


}
@media screen and (max-width: 400px){
    .left {
        width: 80%;
    }
    .right{
        width:20%;
    }
    .left form {
        width: 87%;
    }


}