/* Login page-specific styles */

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 0 20px;
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo svg {
    width: 48px;
    height: 48px;
}

.login-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 12px;
}

.login-logo p {
    font-size: 14px;
    color: #6b7280;
    margin-top: 6px;
}

.login-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 32px;
}

.login-card h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

.form-group { margin-bottom: 18px; }

.login-btn {
    width: 100%;
    padding: 11px 20px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}

.login-btn:hover { background: #2563eb; }
.login-btn:disabled { background: #93c5fd; cursor: not-allowed; }

.forgot-link {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 16px;
}

.forgot-link a {
    font-size: 12px;
    color: #6b7280;
    text-decoration: none;
}

.forgot-link a:hover { color: #3b82f6; }

.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
}

.login-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover { text-decoration: underline; }

.admin-link {
    text-align: center;
    margin-top: 12px;
}

.admin-link a {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: none;
}

.admin-link a:hover { color: #64748b; }

.rate-limit-message {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
    text-align: center;
    line-height: 1.5;
}

.rate-limit-message .countdown {
    font-weight: 700;
    font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 14px;
}

@media (max-width: 640px) {
    body {
        overflow-y: auto;
        padding-top: 40px;
        align-items: flex-start;
    }
    .login-logo { margin-bottom: 20px; }
    .login-card { padding: 24px; }
}