/* Password Reset Styles */
.back-link {
    margin-bottom: 16px;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #274768;
    text-decoration: none;
    font-size: 14px;
}

.back-link a:hover {
    text-decoration: underline;
}

.success-message {
    text-align: center;
    padding: 24px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}

.success-message h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #274768;
}

.success-message p {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 14px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.btn-secondary {
    width: 100%;
    padding: 12px 24px;
    background: white;
    color: #274768;
    border: 1px solid #274768;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 110px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #f9fafb;
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reset-password-form,
.complete-password-form {
    margin-bottom: 16px;
}

.complete-password-card {
    max-width: 1200px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.password-requirements {
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.password-requirements h4 {
    font-weight: 500;
    margin-bottom: 12px;
    color: #274768;
    font-size: 14px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    display: flex;
    align-items: start;
    gap: 8px;
}

.password-requirements li::before {
    content: "•";
    color: #9ca3af;
}

.password-requirements li.nested {
    margin-left: 24px;
}

.password-requirements li.met {
    color: #10b981;
}

.password-requirements li.met::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

.password-requirements li.unmet {
    color: #dc2626;
}

.password-requirements li.unmet::before {
    content: "•";
    color: #dc2626;
}

.password-requirements-message {
    font-size: 14px;
    margin-top: 6px;
}

.password-requirements-message.unmet {
    color: #dc2626;
}

.password-requirements-message.met {
    color: #10b981;
}

.help-section {
    margin-top: 32px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.help-section h4 {
    font-weight: 500;
    margin-bottom: 12px;
    color: #274768;
    font-size: 14px;
}

.help-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-section li {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.help-section li::before {
    content: "•";
    color: #9ca3af;
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}