*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Tahoma, Arial, sans-serif;
}

body{
    background:#f7f8f6;
    color:#222;
    direction:rtl;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.login-container{
    width:100%;
    max-width:420px;
}

.login-logo{
    text-align:center;
    margin-bottom:20px;
}

.login-logo h1{
    color:#2E7D32;
    font-size:34px;
    margin-bottom:8px;
}

.login-logo p{
    color:#666;
    font-size:14px;
}

.login-card{
    width:100%;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:24px;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
}

.login-card h2{
    text-align:center;
    margin-bottom:10px;
    font-size:24px;
}

.login-subtitle{
    text-align:center;
    color:#666;
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
}

.form-group{
    width:100%;
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:bold;
    text-align:right;
}

#forgotEmail{
    display:block;
    width:100% !important;
    min-width:100% !important;
    height:48px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:0 14px;
    font-size:15px;
    outline:none;
    background:#fff;
    box-sizing:border-box;
    direction:ltr;
    text-align:left;
}

#forgotEmail::placeholder{
    direction:ltr;
    text-align:left;
    color:#888;
}

.login-btn{
    display:block;
    width:100%;
    height:50px;
    border:none;
    border-radius:14px;
    background:#2E7D32;
    color:#fff;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
}

.login-btn:hover{
    opacity:.95;
}

.form-message{
    margin-top:12px;
    text-align:center;
    font-size:14px;
    font-weight:bold;
}

.form-message.success{
    color:#2E7D32;
}

.form-message.error{
    color:#d32f2f;
}

.divider{
    text-align:center;
    margin:18px 0;
    color:#999;
    font-size:13px;
}

.register-store-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:48px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    background:#fff;
    color:#222;
    text-decoration:none;
    font-size:14px;
    font-weight:bold;
}

.register-store-btn:hover{
    background:#f7f8f6;
}

@media(max-width:768px){
    body{
        padding:14px;
    }

    .login-card{
        padding:20px;
        border-radius:18px;
    }

    .login-logo h1{
        font-size:28px;
    }

    .login-card h2{
        font-size:22px;
    }

    .login-subtitle{
        font-size:13px;
    }
}