
/* Login page-specific styles */

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

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

.login-logo img {
    width: 240px;
    height: auto;
    transform: translateX(-10px);
}

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

.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;
}

/* Override: form-group margin-bottom 18px (auth.css has 16px) */
.form-group { margin-bottom: 18px; }

.login-btn {
    width: 100%;
    padding: 11px 20px;
    background: #FF8C00;
    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: #E07B00;
}

.login-btn:disabled {
    background: #FFB84D;
    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: #FF8C00;
}

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

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

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

.rate-limit-message {
    background: #FFF7ED;
    color: #c2410c;
    border: 1px solid #fed7aa;
    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 {
        background: #f5f7fa;
        overflow-y: auto;
        padding-top: 40px;
        align-items: flex-start;
    }

    .login-logo {
        margin-bottom: 20px;
    }

    .login-logo img {
        width: 180px;
    }

    .login-card {
        padding: 24px;
    }
}
