/* --- Reset Password Page Styles --- */
.reset-body {
    background-color: var(--bg-dark, #0f172a);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(69, 90, 233, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(69, 90, 233, 0.1) 0%, transparent 40%);
}

.reset-card {
    background-color: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #e6e6e6);
    padding: 35px 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s ease-out;
    position: relative;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.reset-card .header {
    text-align: center;
    margin-bottom: 25px;
}

.reset-card .logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    display: block;
    text-decoration: none;
}

.reset-card h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.reset-card p.subtitle {
    color: var(--text-muted);
    font-size: 13px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.alert-success { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); color: #34d399; }
.alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #f87171; }
.alert-warning { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); color: #fbbf24; }

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.password-container input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(69, 90, 233, 0.1);
}

.toggle-password {
    position: absolute;
    right: 12px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    padding: 5px;
    transition: color 0.2s;
    z-index: 10;
}

.toggle-password:hover {
    color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 13px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(69, 90, 233, 0.18);
}

.footer-links {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* --- Cookie Policy Page Styles --- */
.policy-page main p { margin-bottom: 15px; }

[data-theme='dark'] .policy-page main section > div {
    background-color: #1a202c !important;
    border-color: rgba(255,255,255,0.08) !important;
}
[data-theme='dark'] .policy-page main h1, 
[data-theme='dark'] .policy-page main h2 { color: #f8fafc !important; }

[data-theme='dark'] .policy-page main p,
[data-theme='dark'] .policy-page main li { color: #94a3b8 !important; }

/* --- Activation Page Styles --- */
.status-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.6s ease-out;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.icon-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.status-card .message {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 16px;
}

.btn-action {
    display: inline-block;
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-action:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.footer-link {
    margin-top: 24px;
    font-size: 14px;
}

.footer-link a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-link a:hover {
    color: #2563eb;
}

