.reset-form{
    display: none;
}
.login-details{
    justify-content: center;
    height: 100%;
}
.create-account-info, .login-section {
    max-width: 500px;
    border: 1px solid #000;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-section {
    margin-right: 30px;
    width: 500px;
    height: 400px;
}
.login-form .form-group.d-flex, .reset-form .form-group.d-flex {
    justify-content: space-between;
    align-items: center;
}
.login-form a, .reset-form a{
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}
.login-details h5{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}
.login-details input{
    width: 100%;
    padding: 8px 12px;
    font-size: 15px;
    border: 1px solid #000;
    margin-bottom: 15px;
}
.login-details input:focus, .login-details button:focus{
    outline: none;
}
.login-details button, .create-account-info a{
    background-color: #000;
    padding: 8px 30px;
    color: #fff;
    text-transform: uppercase;
    border: none;
}
.create-account-info a{
    max-width: 47%;
}
.login-social-media .d-flex {
    align-items: center;
    justify-content: center;
}
.login-social-media img{
    max-width: 100%;
}
@media(max-width:991px){
    .login-section, .create-account-info {
        margin-right: auto;
        width: 90%;
        height: auto;
        display: block;
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 10px;
    }
    .login-details {
        justify-content: center;
        height: 100%;
        display: block !important;
    }
}
/*---Registration-page----*/
.register-page .login-section {
    height: auto;
    margin-right: 0;
    width: 60%;
}
.register-page  .login-details input[type="checkbox"] {
    height: 16px;
    width: 16px;
    margin-right: 5px;
    border-radius: 0;
    margin-bottom: 30px;
}
.register-page  .login-details label{
    vertical-align: text-bottom;
}
@media(max-width:991px){
    .register-page .login-section {
        width: 100%;
    }
    .register-page  .login-details label {
        vertical-align: middle;
        width: 80%;
    }
}