.input-error {
    border: 1px solid red;
    /* Add more styling as needed */
}

.container{display: flex;
    width: 100%;
    background-image: url(../img/overlay/2.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:150% auto;
} 

.content{width: 100%;
height: 100%;
background-color:#49a1f30c; 
display: flex;
justify-content: center;
align-items: center;
position: relative;
}

.left-bg{background-image: url(../img/overlay/3.png);
width: 90%;
height: 100%;
position: absolute;
top: 0px;
bottom: 0px;
left: 5%;
z-index: 0;
}

.form-register{width: 59%;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
border-radius: 8px;
z-index: 1;
display: flex;
border: 1px solid #ddd;
margin-top: 50px;
margin-bottom: 50px;
}

.first-form-div{width: 40%;
background-image: url(../img/bg/2.jpeg);
background-repeat: no-repeat;
background-position: center;
background-size:cover;
}

.second-form-div{width: 60%;
    display: flex;
align-items: center;
    flex-direction: column;
    font-family: 'Poppins';
margin-bottom: 30px;
}

h1{    font-family: 'Rubik';
    font-weight: 600;
    font-size: 22px;
text-align: center;
margin-top: 30px;
}

#form{width: 70%;
    margin-top: 15px;
}

.circle-checkbox{width: 100%;
display: flex;
margin-top: 10px;
}

.whoim{color: #999;
    font-size: 13px;
    margin-left: 6px;
}

.check-box-main{width: 100%;
display: flex;
margin-top: 5px;
margin-left: 6px;
margin-bottom:14px;}

.copy-check-boxdiv{display: flex;
margin-right: 20px;

}

.copy-check-boxdiv label{margin-left: 3px;
font-size: 14px;
font-family: 'Rubik';
letter-spacing: .5px;
color:#6e6b6b;
cursor: pointer;
}

.input-section{position: relative;
width: 100%;}

.input-icon{position:absolute;
    position: absolute;
    top: 38%;
    margin-left: 4%;
    color: #2c2b2b;
    font-size: 18px;    
}

.input{    background-color: #f5f4f4;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 15px 15px 15px 10%;
    width: 100%;
    margin-top: 10px;
    transition: all .2s;
    font-family: 'poppins';
    color:#383838;
    font-size: 18px;
}


.input:focus{
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
    outline: transparent;
    border: transparent;
}

.input::placeholder{color: rgb(117, 110, 110);
font-family: 'Rubik';
letter-spacing: .5px;
}

.agreement-div{font-size: 12px;
display: flex;
margin-top: 15px;
padding-left: 6px;}

.agreement-div label{margin-left: 5px;}

.agreement-div label a{text-decoration: none;
color: #0073e1;}

#agreement{margin-top: 3px;}

.submitbt{background-color: #0073e1;
color: white;
font-weight: bold;
font-size: 17px;
letter-spacing: 1px;
font-family: 'Rubik';
cursor: pointer;}

.already-registred{font-size: 14px;
text-align: center;
margin-top: 10px;
}

.already-registred a{
color: #0073e1;
line-height: 30px;
}

.error_span{    font-family: 'Rubik';
    color: red;
    font-size: 14px;
    letter-spacing: .3px;
    font-weight: 500;
    margin-left: 5px;
}

.option_error_span{
    margin-top: -10px;
}

@media (max-width:900px){

    .form-register{
        width: 94%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .second-form-div{
        width: 85%;
    }

    #form{
        width: 100%;
    }

}