/* Account pages styling - gradient royal blue theme */

/* Account page container - clean flexbox centering without Bootstrap grid */
.account-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Primary buttons for account pages */
.account-btn-primary {
    background: linear-gradient(135deg, #1E3A8A 0%, #2E4BC6 100%) !important;
    border-color: #2E4BC6 !important;
    color: white !important;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 16px !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 75, 198, 0.3);
}

.account-btn-primary:hover {
    background: linear-gradient(135deg, #2E4BC6 0%, #3B5CD1 100%) !important;
    border-color: #3B5CD1 !important;
    box-shadow: 0 4px 16px rgba(46, 75, 198, 0.4);
}

.account-btn-primary:active {
    box-shadow: 0 2px 8px rgba(46, 75, 198, 0.3);
}

/* Links in account pages */
.account-link {
    color: #2E4BC6 !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.account-link:hover {
    color: #3B5CD1 !important;
    text-decoration: underline !important;
}

/* Form controls styling for account pages */
.account-form .form-control {
    border-radius: 16px !important;
    padding: 14px 18px !important;
}

.account-form .form-control:focus {
    border-color: #2E4BC6 !important;
    box-shadow: 0 0 0 4px rgba(46, 75, 198, 0.15) !important;
}

/* Card styling for account pages */
.account-card {
    border-radius: 24px !important;
    width: 100%;
    min-width: 400px;
    max-width: 540px;
}

/* Reduce card body padding on medium screens for better form width */
@media (max-width: 991px) {
    .account-card .card-body {
        padding: 2rem !important;
    }
}

/* Mobile optimization */
@media (max-width: 576px) {
    .account-page-container {
        padding: 1rem 0.75rem;
    }

    .account-card {
        min-width: unset;
        max-width: 100%;
    }

    .account-card .card-body {
        padding: 1.5rem !important;
    }
}

/* Verification Sent Page - Progress Steps */
.journey-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.step-icon.complete {
    background: linear-gradient(135deg, #2D5A3D 0%, #3D7A4D 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.25);
}

.step-icon.current {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    animation: pulse-step 2s infinite;
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}

.step-icon.pending {
    background: var(--soft-blue);
    color: var(--text-secondary);
}

@keyframes pulse-step {
    0%, 100% { box-shadow: 0 0 0 0 rgba(65, 105, 225, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(65, 105, 225, 0); }
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.step-connector {
    width: 32px;
    height: 3px;
    background: var(--border-color);
    border-radius: 2px;
    margin-bottom: 24px;
}

.step-connector.active {
    background: linear-gradient(90deg, #2D5A3D, var(--primary-color));
}

/* Verification Sent Page - Animated Envelope */
.animated-envelope {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 16px 0 24px;
    display: inline-block;
    animation: envelope-float 3s ease-in-out infinite;
}

@keyframes envelope-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Verification Sent Page - Email Highlight */
.email-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Verification Sent Page - Timer Badge */
.timer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE69C 100%);
    color: #856404;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 16px;
}

/* Verification Sent Page - Small screens (mobile) */
@media (max-width: 576px) {
    .journey-steps {
        gap: 8px;
    }
    .step-icon {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    .step-connector {
        width: 16px;
    }
    .animated-envelope {
        font-size: 2.5rem;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .animated-envelope {
        animation: none;
    }
    .step-icon.current {
        animation: none;
    }
}

