body {
    font-family: 'Alexandria', Arial, sans-serif;
    background: linear-gradient(135deg, #e9ecef 0%, #d3d6db 100%);
    margin: 0;
    min-height: 100vh;
    direction: rtl;
}
.login-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    padding: 32px 28px 24px 28px;
    width: 100%;
    max-width: 370px;
    text-align: center;
}
.login-logo img {
    margin-bottom: 10px;
}
.brand {
    color: #4caf50;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}
.brand-country {
    color: #1a1a1a;
    font-size: 1.1em;
    font-weight: bold;
    margin-right: 0.5px;
}
.login-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 6px 0;
    color: #222;
}
.login-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 22px;
}
.login-form {
    margin-top: 10px;
}
.input-group {
    display: flex;
    align-items: center;
    background: #f5f6fa;
    border-radius: 8px;
    margin-bottom: 18px;
    border: 1px solid #e0e0e0;
    padding: 0 10px;
    flex-direction: row-reverse;
}
.input-icon {
    margin-left: 0;
    margin-right: 8px;
    color: #888;
}
.form-control {
    font-family: 'Alexandria', Arial, sans-serif;
    border: none;
    background: transparent;
    flex: 1;
    font-size: 1rem;
    padding: 12px 0;
    outline: none;
    color: #222;
}
.form-control::placeholder {
    color: #bbb;
    font-size: 1rem;
}
.login-btn {
    width: 100%;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Alexandria', Arial, sans-serif;
}
.login-btn:hover {
    background: #388e3c;
}
.login-links {
    margin-top: 8px;
}
.login-links a {
    color: #444;
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 0.2s;
}
.login-links a:hover {
    color: #4caf50;
}
.invalid-feedback {
    display: block;
    color: #d32f2f;
    font-size: 0.95rem;
    text-align: right;
    margin-top: 2px;
}
.login-alert {
    background: #fdecea;
    color: #d32f2f;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    gap: 8px;
    font-family: 'Alexandria', Arial, sans-serif;
}
.input-error {
    color: #d32f2f;
    background: #fdecea;
    border-radius: 7px;
    padding: 6px 12px;
    margin-top: 6px;
    font-size: 0.97em;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 4px #0001;
    margin-bottom: 8px;
    direction: rtl;
}
.input-group .form-control.is-invalid {
    border-color: #d32f2f;
} 