#account-main{
    --forms-width: 768px;
    --h-logo-height: 100px;
    background: var(--dark-light) url(../img/bg-home.png) center;
    background-size: cover;
    min-height: 100vh;
}
#account-forms{
    --_mask: var(--dark);

    width: 100%;
    max-width: var(--forms-width);
    min-height: 100vh;
    background: #fff;
    
    box-shadow: var(--box-shadow-xlg);
    border-radius: var(--radius-xlg);
}
#account-forms > *{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}
#account-forms header{
    padding: 2.5rem 1.5rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500; 
    text-align: center; 

    color: #fff;
    position: relative;
    padding-bottom: 110px;
    background: linear-gradient(180deg, #c54522, #c64723);
}

#account-forms header .img{
    width: 100%;
    height: 60px;
    background: #fff;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: auto 100%;
    mask-size: auto 100%;
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);    
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

#account-forms header::after{
    display: block;
    width: 100%;
    height: 80px;
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-top-right-radius: 500px;
    border-top-left-radius: 500px;
}

.btn-resend-otp:not([data-wait="0"])::after{
    content: '(' attr(data-wait) ' ثانية)';
    display: inline-block;
}
[dir="ltr"] .btn-resend-otp:not([data-wait="0"])::after{
    content: '(' attr(data-wait) 's)';
    display: inline-block;
}

.btn-signUpAs{
    --text-primary: #fff;
    --text-hover: #fff;
    --color-hover: #fff;
    border: 1px solid rgb(0 0 0 / 5%);
    aspect-ratio: 1 / 1;
    width: 24px;
    border-radius: 100px;
    background: rgb(0 0 0 / 5%);
}
.btn[class*="btn-tech-"] {
    --text-primary: var(--text-primary);
    --text-hover: var(--primary);
}

.drop-menu{
    --a: var(--text-primary);
    --a-hover: var(--primary);
}

.btn-signInFB{
    --brand-color: #3b5998;
}
.btn-signInGL{
    --brand-color: #ea4335;
}
.btn-signInAP{
    --brand-color: #000;
}
.btn[class*="btn-signIn"]{
    border: 1px solid;
}
.btn[class*="btn-signIn"]:is(:hover, :focus, .active) {
    background: var(--brand-color);
    color: #fff;
}


.input, .input input{
    border-radius: 100px;
}
.input input{
    border: 1px solid var(--primary);
}

.signIn-with{
    direction: ltr;
    display: inline-block;
}

#signIn header h1{
    width: 100%;    
    color: #fff;
    text-shadow: 1px 1px 5px rgb(0 0 0 / 50%);
    margin: 1.5rem 0 0;
}

#account-forms section{
    background: #fff;
    padding: 1.5rem;
    padding-top: 0;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

#account-forms .site-logo{    
    display: block;
    width: 100%;
    height: 100px;

    background-size: contain;
    background-position: center;    
    background-repeat: no-repeat;
    background-color: var(--primary);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
#account-forms .btn.dark{
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.4);
    transition: all .1s ease;
}
#account-forms .btn.dark:is(:hover, :focus, :active) {
    background: #020617;
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45);
}
#account-form small a{
    color: var(--dark, #1890ff);
    font-weight: 500;
}

/* sign In/Up */
.divider-box{
    position: relative;
    --border: 1px solid rgb(255 255 255 / 33%);
}
.divider-box .btn{
    --text-primary: #111827 !important;
}
.divider-box .btn i{
    --icon-size: 28px;
}
.divider-box[data-bottom-divider] {
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.divider-box[data-top-divider] {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    margin-top: 2rem;
}
/* Or */
.divider-box[data-bottom-divider]::after,
.divider-box[data-top-divider]::before{
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    font-size: .9rem;
    font-weight: 600;
    position: absolute;
    right: 50%;
    margin-right: -17px;
    text-align: center;    
    padding: 4px 10px;    
}
.divider-box[data-bottom-divider]::after{
    bottom: -16px;
    content: attr(data-or);
}
.divider-box[data-top-divider]::before{    
    top: -16px;
    content: attr(data-or);
}





/* Verification form */
#form-verify .flex input {
    width: 45px;
    min-height: 45px;
    aspect-ratio: 1/1;
    text-align: center;
    border-radius: 10px;
    
    font-size: 28px;
    flex-grow: 1;
}
#form-verify input[name="verifyCode"]{
    display: none;
}






.pwd_score{
    padding-inline: 15px;
}