/* صفحة دخول الإدارة (أدمن + دكتور + موظف) */

body.admin-login-page {
    background: radial-gradient(circle at top, #e0f2fe 0, #f9fafb 40%, #e5e7eb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-wrapper {
    width: 100%;
    max-width: 430px;
    padding: 12px;
}

.login-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: "";
    position: absolute;
    inset-inline-start: -40px;
    inset-block-start: -40px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: radial-gradient(circle, #2563eb, #22c55e);
    opacity: 0.12;
}

.clinic-logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    margin: 0 auto 10px;
}

.clinic-title {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
    color: #0f172a;
}

.clinic-subtitle {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 18px;
}

.form-label {
    font-size: 13px;
    color: #111827;
    margin-bottom: 4px;
}

.form-control {
    border-radius: 10px;
    font-size: 14px;
    padding: 9px 11px;
}

.form-control:focus {
    box-shadow: 0 0 0 1px #2563eb33;
    border-color: #2563eb;
}

.login-btn {
    border-radius: 999px;
    width: 100%;
    padding: 9px;
    font-weight: 600;
    font-size: 15px;
}

.login-footer-links {
    font-size: 12px;
    color: #6b7280;
}

.login-footer-links a {
    text-decoration: none;
}

.error-alert {
    font-size: 13px;
    border-radius: 10px;
    padding-block: 8px;
    margin-bottom: 10px;
}

.caps-warning {
    font-size: 11px;
    color: #b91c1c;
    margin-top: 4px;
    display: none;
}