/* ===== LOGIN PAGE ===== */
body.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.brand {
    text-align: center;
    margin-bottom: 2rem;
}

.brand h1 {
    color: #333;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 300;
}

.brand span {
    color: #667eea;
    font-weight: 600;
}

.brand p {
    color: #666;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.login-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.login-forgot {
    margin: -4px 0 16px;
    text-align: right;
    font-size: 13px;
}

.login-forgot a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

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

.login-container .success {
    word-break: break-word;
}

.login-help {
    margin-top: 18px;
    font-size: 14px;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
}

.login-help a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

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

.login-lead {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: -8px 0 20px;
}

.login-back {
    display: block;
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
}

.login-back a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
}

.login-back a:hover {
    color: #667eea;
}

.login-page .pwd-checklist {
    list-style: none;
    padding: 0;
    margin: 4px 0 16px;
    font-size: 13px;
}

.login-page .pwd-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #64748b;
}

.login-page .pwd-rules-label {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 4px;
}

.login-page .pwd-checklist li.ok i {
    color: #059669;
}

.login-success-icon {
    text-align: center;
    font-size: 42px;
    color: #059669;
    margin: 0 0 12px;
}

.login-container .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}