/* Login Page Styles */

/* Override body overflow from site.css to allow scrolling */
body {
    overflow: auto !important;
}

/* Hide layout elements - footer not needed for auth pages */
.hero-background {
    display: none !important;
}

footer {
    display: none !important;
}

/* Override main-content height since footer is hidden */
.main-content.no-header,
.main-content.with-header {
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.auth-wrapper {
    height: 100vh;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    z-index: -2;
}

.auth-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(103, 58, 183, 0.1) 0%, rgba(63, 81, 181, 0.1) 50%, rgba(33, 150, 243, 0.1) 100%);
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    top: 60%;
    right: -150px;
    animation-delay: -2s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #14b8a6, #0891b2);
    bottom: -250px;
    left: 30%;
    animation-delay: -4s;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: white;
    transform: rotate(45deg);
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 40%;
    right: 30%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Single panel layout (for ForgotPassword, ResetPassword) */
.auth-container.single-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    padding: 20px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 40px;
    position: relative;
}

/* Centered card for single panel */
.auth-card.centered {
    border-right: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    width: 100%;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.brand-section {
    margin-bottom: 12px;
    text-align: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.3);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.2;
}

.auth-subtitle {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

.form-section {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.alert-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.alert-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.email-verification-alert {
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 20px;
    margin-bottom: 30px;
}

.email-verification-alert .alert-icon {
    width: 24px;
    height: 24px;
}

.verification-actions {
    margin-top: 12px;
}

.verification-help {
    font-size: 13px;
    color: #047857;
    margin: 0;
    line-height: 1.5;
}

.resend-link {
    background: none;
    border: none;
    color: #059669;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.resend-link:hover {
    color: #047857;
    text-decoration: none;
}

.resend-form {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: none;
}

.resend-form.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.resend-form input[type="email"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
}

.resend-form button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resend-form button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    padding: 0 !important;
    color: #9ca3af;
    z-index: 10;
    transition: color 0.3s ease;
    pointer-events: none;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.input-icon svg {
    width: 20px !important;
    height: 20px !important;
}

/* Hide placeholder when not focused, show when focused */
.form-input::placeholder {
    color: transparent;
    transition: color 0.3s ease;
}

.form-input:focus::placeholder {
    color: #9ca3af;
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 36px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Specific styling for email inputs to override browser defaults */
input[type="email"].form-input {
    width: 100%;
    padding: 14px 14px 14px 36px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Specific styling for text inputs to override browser defaults */
input[type="text"].form-input {
    width: 100%;
    padding: 14px 14px 14px 36px;
    border: 2px solid rgba(229, 231, 235, 0.8) !important;
    border-radius: 12px !important;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 48px !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

input[type="text"].form-input:focus {
    outline: none !important;
    border-color: #667eea !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1), 0 8px 32px rgba(20, 184, 166, 0.15) !important;
}

/* Password field specific styling */
input[type="password"].form-input {
    width: 100%;
    padding: 14px 14px 14px 36px;
    border: 2px solid rgba(229, 231, 235, 0.8) !important;
    border-radius: 12px !important;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 48px !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

input[type="password"].form-input:focus {
    outline: none !important;
    border-color: #667eea !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1), 0 8px 32px rgba(20, 184, 166, 0.15) !important;
}

.form-input:focus,
input[type="email"].form-input:focus,
input[type="text"].form-input:focus {
    outline: none;
    border-color: #14b8a6;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 8px 32px rgba(102, 126, 234, 0.15);
}

.form-input:focus + .floating-label,
.form-input:not(:placeholder-shown) + .floating-label,
input[type="email"].form-input:focus + .floating-label,
input[type="email"].form-input:not(:placeholder-shown) + .floating-label,
input[type="text"].form-input:focus + .floating-label,
input[type="text"].form-input:not(:placeholder-shown) + .floating-label {
    transform: translateY(-26px) scale(0.85);
    color: #14b8a6;
}

.form-input:focus ~ .input-icon,
input[type="email"].form-input:focus ~ .input-icon,
input[type="text"].form-input:focus ~ .input-icon {
    color: #14b8a6;
}

.floating-label {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 6px;
    z-index: 3;
}

/* Floating label position for password fields */
input[type="password"].form-input + .floating-label {
    left: 44px;
}

input[type="text"].form-input + .floating-label {
    left: 56px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    color: #9ca3af;
    transition: color 0.3s ease;
    z-index: 3;
}

.password-toggle:hover {
    color: #f59e0b;
}

.password-toggle svg {
    width: 18px;
    height: 18px;
}

.input-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 8px;
    margin-left: 8px;
    font-weight: 500;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.form-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.form-checkbox:checked ~ .checkmark {
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    border-color: #14b8a6;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.form-checkbox:checked ~ .checkmark::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.forgot-link {
    font-size: 14px;
    color: #14b8a6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #0f766e;
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 4px;
    background: transparent;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-btn:hover .btn-bg {
    background: linear-gradient(135deg, #0f766e 0%, #1e40af 100%);
    transform: translateY(-2px);
}

.submit-btn:hover {
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.4);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0px);
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 10px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
}

.divider-text {
    background: white;
    color: #9ca3af;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
}

.social-login {
    margin-bottom: 10px;
}

.social-btn {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.auth-footer {
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: #6b7280;
}

.footer-link {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0f766e;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.back-home-btn:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.back-home-btn svg {
    width: 18px;
    height: 18px;
}

/* Features Panel */
.features-panel {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    padding: 20px 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.features-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.features-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.features-panel .back-home-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
}

.features-panel .back-home-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.features-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.features-description {
    font-size: 34px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.4;
}

.features-list {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-label {
    font-size: 11px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
    }

    .features-panel {
        order: -1;
        min-height: auto;
        padding: 40px 60px;
    }

    .features-title {
        font-size: 28px;
    }

    .features-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 32px;
    }

    .trust-indicators {
        gap: 16px;
    }

    .trust-number {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .auth-card {
        padding: 40px 32px;
    }

    .features-panel {
        padding: 32px;
    }

    .auth-title {
        font-size: 28px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 32px 20px;
    }

    .features-panel {
        padding: 24px 20px;
    }

    .auth-title {
        font-size: 24px;
    }

    .features-title {
        font-size: 24px;
    }

    .logo-text {
        font-size: 24px;
    }
}

/* Allow scrolling when content doesn't fit */
@media (max-height: 700px) {
    .main-content.no-header,
    .main-content.with-header {
        height: auto !important;
        min-height: 100vh !important;
        overflow: auto !important;
    }

    .auth-wrapper {
        height: auto;
        min-height: 100vh;
    }

    .auth-container {
        height: auto;
        min-height: 100vh;
    }
}

/* Compact for small height screens */
@media (max-height: 800px) {
    .auth-card {
        padding: 20px 40px;
    }

    .brand-section {
        margin-bottom: 14px;
    }

    .brand-logo {
        margin-bottom: 8px;
    }

    .auth-title {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .auth-subtitle {
        font-size: 13px;
    }

    .auth-form {
        gap: 12px;
    }

    .form-input,
    input[type="email"].form-input,
    input[type="text"].form-input,
    input[type="password"].form-input {
        padding: 12px 12px 12px 42px !important;
        font-size: 13px !important;
        height: 44px !important;
    }

    .submit-btn {
        padding: 12px;
    }

    .auth-divider {
        margin: 12px 0;
    }

    .social-login {
        margin-bottom: 12px;
    }

    .social-btn {
        padding: 10px 14px;
    }

    .features-panel {
        padding: 20px 30px;
    }

    .features-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .features-description {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .features-list {
        gap: 12px;
        margin-bottom: 16px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-content h3 {
        font-size: 17px;
    }

    .feature-content p {
        font-size: 13px;
    }

    .trust-indicators {
        padding-top: 14px;
        gap: 12px;
    }

    .trust-number {
        font-size: 18px;
    }

    .trust-label {
        font-size: 10px;
    }
}

/* ==================== Register Page Specific Styles ==================== */

/* Benefits Grid - Compact */
.benefits-grid {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-content h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 26px;
    opacity: 0.9;
    line-height: 1.3;
}

/* Password Strength - Compact */
.password-strength {
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.strength-meter {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981);
}

.strength-text {
    font-size: 12px;
    color: #9ca3af;
    min-width: 90px;
}

/* Terms Section - Compact */
.terms-section {
    margin: 4px 0;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.terms-section.highlight {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.terms-link {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 600;
}

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

.terms-reminder {
    text-align: center;
    margin-top: 6px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.terms-reminder small {
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
}

.terms-reminder.hidden {
    opacity: 0;
}

/* Disabled Submit Button */
.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-btn:disabled .btn-bg {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%) !important;
}

.submit-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.submit-btn:disabled:hover .btn-bg {
    transform: none !important;
}

/* Register page responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-height: 900px) {
    .benefits-grid {
        gap: 10px;
        margin-bottom: 14px;
    }

    .benefit-icon {
        width: 32px;
        height: 32px;
    }

    .benefit-icon svg {
        width: 16px;
        height: 16px;
    }

    .benefit-content h3 {
        font-size: 13px;
    }

    .benefit-content p {
        font-size: 11px;
    }

    .password-strength {
        margin-top: 4px;
    }

    .terms-section {
        margin: 2px 0;
        padding: 6px;
    }

    .terms-reminder {
        margin-top: 4px;
    }
}

/* ==================== Email Verification Page Styles ==================== */

.verification-result {
    text-align: center;
    padding: 20px 0;
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: scaleIn 0.5s ease-out;
}

.verification-result.success .result-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.verification-result.error .result-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.result-icon svg {
    width: 40px;
    height: 40px;
}

.result-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.verification-result.success .result-title {
    color: #10b981;
}

.verification-result.error .result-title {
    color: #dc2626;
}

.result-message {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
    min-width: 200px;
}

.primary-btn .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.primary-btn:hover .btn-bg {
    background: linear-gradient(135deg, #0f766e 0%, #1e40af 100%);
    transform: translateY(-2px);
}

.primary-btn:hover {
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.4);
    transform: translateY(-2px);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    background: white;
    transition: all 0.3s ease;
    min-width: 200px;
}

.secondary-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Email verification responsive */
@media (max-width: 768px) {
    .result-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .result-title {
        font-size: 18px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        min-width: auto;
    }
}
