#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: 1rem 0 0; 
    padding-bottom: 2.5rem;
    min-height: 250px;
    font-size: 1.1rem;
    font-weight: 500; 
    text-align: center; 

    color: #fff;
    position: relative;
    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: -1px;
    right: 0;
    background: var(--section-bg);
    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);
}




.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: var(--section-bg);
    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;
}







/* 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;
}