/* Authentication Pages Styles (Login & Register) */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    padding-top: max(10vh, 60px);
}

/* Login Container */
.login-container,
.register-container {
    max-width: 500px;
    width: 100%;
}

.register-container {
    max-width: 600px;
}

/* Login/Register Box */
.login-box,
.register-box {
    background: white;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Title */
.login-title,
.register-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #363636;
    margin-bottom: 1.5rem;
}

.login-title a,
.register-title a {
    color: #363636;
    text-decoration: none;
}

.login-title a:hover,
.register-title a:hover {
    color: #667eea;
}

.login-title .icon,
.register-title .icon {
    color: #667eea;
    margin-right: 0.5rem;
}

/* Forgot Password Link (right-aligned above password input) */
.forgot-row {
    text-align: right;
    margin-bottom: 0.35rem;
}

.forgot-link {
    font-size: 0.8rem;
    color: #667eea;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Input Icons */
.input-icon {
    color: #9ca3af;
}

/* Login/Register Button */
.login-button,
.register-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.login-button:hover,
.register-button:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f91 100%);
}

/* Newsletter Checkbox */
.newsletter-label {
    font-size: 0.875rem;
}

/* Free note on register page */
.register-free-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
}

.register-free-note i {
    margin-right: 0.3rem;
}

/* Links */
.login-link,
.register-link {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.875rem;
}

.login-link a,
.register-link a {
    color: #667eea;
    font-weight: 600;
}

/* Auth Page Cross-Link Prompt (login↔register) */
.register-prompt {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.register-prompt a {
    color: #667eea;
    font-weight: 600;
}

/* Footer Text */
.footer-text {
    text-align: center;
    color: white;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.footer-text a {
    color: white;
    text-decoration: underline;
}

/* Success Message */
.success-message {
    background: #f0f9ff;
    border: 2px solid #e0f2fe;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-icon {
    background: #22c55e;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.success-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #363636;
}

/* Turnstile Widget */
.turnstile-container {
    margin-top: 2rem;
}

/* Error Message */
.error-message {
    background: #fee;
    border: 2px solid #fcc;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    color: #c33;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* ==================== Plan 078: Extracted from verify_email.pt ==================== */

.verify-container {
    max-width: 480px;
    width: 100%;
}

.verify-box {
    background: white;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.verify-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #363636;
    margin-bottom: 0.5rem;
}

.verify-title .icon {
    color: #667eea;
    margin-right: 0.5rem;
}

.verify-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.verify-email-address {
    font-weight: 600;
    color: #363636;
}

.code-input {
    font-size: 1.75rem !important;
    text-align: center;
    letter-spacing: 0.5rem;
    font-weight: 600;
    padding: 0.75rem !important;
}

.verify-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem;
    margin-top: 0.75rem;
}

.verify-button:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f91 100%);
}

.resend-section {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0f0f0;
}

.resend-section .resend-label {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.resend-button {
    font-size: 0.875rem;
    font-weight: 600;
    color: #667eea;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.resend-button:hover:not(:disabled) {
    text-decoration: underline;
}

.resend-button:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.cooldown-text {
    font-size: 0.8rem;
    color: #999;
}

.resend-prompt {
    text-align: center;
    margin-top: 1.5rem;
}

.resend-prompt p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.logout-link {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.8rem;
}

.logout-link a {
    color: #999;
}

.logout-link a:hover {
    color: #667eea;
}

/* ==================== Plan 078: Extracted from deleted.pt ==================== */

body.page-account-deleted {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.deleted-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.deleted-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 3rem;
    max-width: 500px;
    text-align: center;
}

.deleted-icon {
    font-size: 4rem;
    color: #48c774;
    margin-bottom: 1.5rem;
}

.deleted-title {
    font-size: 2rem;
    font-weight: 600;
    color: #363636;
    margin-bottom: 1rem;
}

.deleted-message {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.deleted-cta {
    margin-top: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    margin-bottom: 2rem;
}

.brand-logo i {
    font-size: 1.5rem;
}


