.form-wrapper{
    width: 100%;
    /* height: 230vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.empty-Input{
    border: 1px solid rgb(255, 81, 0);
}

.errorText{
    color: rgb(255, 81, 0);
    font-size: 12px;
    margin: 10px 0 0 10px;
    /* visibility: hidden; */
}

.formErrorText, .loginFormErrorText{
    color: rgb(255, 81, 0);
    font-size: 14px;
    margin-bottom: 20px;
    /* visibility: hidden; */
}

.checkErrorText{
    margin-top: 0;
}

.form-wrapper .form-container{
    width: 90%;
    height: 85%;
    background: var(--linear-color);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-wrapper form{
    width: 50%;
    height: 100%;
    position: relative;
    padding: 30px;
}

.form-wrapper form::before{
    width: 500px;
    height: 500px;
    content: '';
    background: radial-gradient(rgba(49, 128, 247, 0.35), transparent 80%, rgba(0, 247, 255, 0.1));
    top: 0px;
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    left: 10%;
}

.form-wrapper form .formHeading{
    font-size: 23px;
    margin-bottom: 10px;
}

.form-wrapper form .formIntroText{
    font-size: 14px;
    margin-bottom: 50px;
}

.form-wrapper form .formInputDiv{
    margin-bottom: 30px;
}

.form-wrapper form label{
    display: block;
    text-transform: capitalize;
    font-size: 14px;
    margin: 0px 0px 15px 15px;
}

.form-wrapper form input{
    width: 90%;
    border: 1.5px solid var(--border-color);
    background-color: transparent;
    height: 40px;
    border-radius: 5px;
    padding: 5px 15px;
    color: var(---primary-color);
    outline: none;
    font-size: 14px;
    display: block;
}

.form-wrapper form .formPwdInputs{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1.5px solid var(--border-color);
    height: 40px;
    padding: 10px;
    border-radius: 5px;
}

.form-wrapper form .formPwdInputs input{
    width: 90%;
    border: none;
    border-radius: 0;
    height: 100%;
    padding: 0;
}

.form-wrapper form .formPwdInputs span{
    font-size: 15px;
    cursor: pointer;
}

.form-wrapper form .forgotPasswordDiv{
    width: 90%;
    display: flex;
    justify-content: right;
    align-items: center;
    margin-bottom: 40px;
}

.form-wrapper form .forgotPassword{
    font-size: 15px;
    color: var(--btn-primary-color);
    text-decoration: none;
    text-align: right;
    display: inline-block;
}

.termsAndConCheck{
    width: 60%;
    display: flex;
    gap: 20px;
    padding: 0;
    align-items: center;
}

.termsAndConCheck input[type="checkbox"] {
    display: none;
}

.termsAndConCheck .custom-check-con {
    width: 45px;
    height: 45px;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.6s ease;
}

.termsAndConCheck .custom-checkBox {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    font-size: 13px;
    color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
}

.termsAndConCheck .custom-check-con:hover {
    background-color: var(--border-color);
}

.registerformBtn {
    width: 90%;
    font-weight: 600;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    border: none;
    border-radius: 10px;
    background-color: var(--btn-primary-color);
    color: var(--secondary-color);
    transition: .6s ease;
    cursor: pointer;
}

.registerformBtn:hover {
    background-color: var(--btn-hover-color);
}

.accountStats{
    margin: 30px 0;
    text-align: center;
    width: 90%;
}

.accountStats p, .accountStats a{
    margin-bottom: 10px;
}

.accountStats a{
    display: block;
    text-decoration: none;
    color: var(--btn-primary-color);
}

.termsAndConCheck p a {
    color: var(--btn-primary-color);
    text-decoration: none;
}

.signUpwithGoogle {
    width: 90%;
}

.signUpwithGoogle .contWith {
    margin: 10px 0 20px 0;
    text-align: center !important;
}

.signUpwithGoogle a {
    display: block;
    width: 30px;
    margin: 10px auto;
}

.signUpwithGoogle a img{
    display: block;
    width: 25px;
}

.signUpwithGoogle .copyText{
    text-align: center;
    margin-top: 20px;
}

.form-wrapper .form-about{
    width: 45%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    position: relative;
    --background-image: url("../images/notebook.webp");
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.form-wrapper .form-about::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: var(--background-image);
    transition: transform 0.5s ease-in-out;
    z-index: -1;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.form-wrapper .form-about h2{
    font-size: 40px;
    margin-bottom: 10px;
}

.form-wrapper .form-about p{
    font-size: 16px;
}

@media (max-width: 800px) {
    .form-wrapper{
        width: 100%;
        height: auto;
        padding: 10px;
    }
    .loginFormWrapper{
        height: auto;
    }
    .form-wrapper .form-container{
        width: 95%;
    }
    
    .form-wrapper form{
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .form-wrapper form::before{
        width: 300px;
        height: 300px;
        left: 0;
    }
    
    .form-wrapper form .formInputDiv{
        margin-bottom: 20px;
        width: 100%;
    }
    
    .form-wrapper form input{
        width: 100%;
    }
    
    .form-wrapper form .formPwdInputs{
        width: 100%;
    }
    
    .form-wrapper form .forgotPasswordDiv{
        width: 100%;
    }
    
    .form-wrapper form .forgotPassword{
        font-size: 14px;
    }
    
    .termsAndConCheck{
        width: 100%;
        gap: 5px;
    }
    
    .termsAndConCheck p{
        font-size: 13px;
    }
    
    .termsAndConCheck input[type="checkbox"] {
        display: none;
    }
    
    .termsAndConCheck .custom-check-con {
        width: 30px;
        height: 30px;
        border-radius: 0px;
    }
    
    .termsAndConCheck .custom-check-con:hover {
        background-color: transparent;
    }
    
    .registerformBtn {
        width: 100%;
        border-radius: 7px;
    }
    
    .accountStats{
        margin: 30px 0;
        text-align: center;
        width: 90%;
    }
    
    .accountStats p, .accountStats a{
        margin-bottom: 10px;
    }
    
    .accountStats a{
        display: block;
        text-decoration: none;
        color: var(--btn-primary-color);
    }
    
    .termsAndConCheck p a {
        color: var(--btn-primary-color);
        text-decoration: none;
    }
    
    .signUpwithGoogle {
        width: 90%;
    }
    
    .signUpwithGoogle .contWith {
        margin: 10px 0 20px 0;
        text-align: center !important;
    }
    
    .signUpwithGoogle a {
        display: block;
        width: 30px;
        margin: 10px auto;
    }
    
    .signUpwithGoogle a img{
        display: block;
        width: 25px;
    }
    
    .signUpwithGoogle .copyText{
        text-align: center;
        margin-top: 20px;
    }
    .form-wrapper .form-about{
        display: none;
    }
}


/* Password reset page */

#passwordResetForm{
    width: 30%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex-direction: column;
    /* background-color: red; */
    p,label, input{
        font-size: 18px;
        width: 100%;
        text-align: left;
        text-transform: capitalize;
    }
    input{
        border: none;
        border-radius: 0;
    }
    button{
        width: 100%;
    }
}