/* Verification Page Styles */
.verification-container {
    text-align: center;
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.verification-icon {
    font-size: 80px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    max-width: 450px;
    margin: 0 auto 48px;
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.6;
}

.verification-form {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.verification-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
}

.code-input-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.code-input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-text);
    margin-bottom: 12px;
    text-align: left;
}

.code-input {
    width: 100%;
    padding: 20px;
    font-size: 36px;
    text-align: center;
    letter-spacing: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.code-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    background: rgba(15, 23, 42, 0.95);
}

.code-input::placeholder {
    color: rgba(148, 163, 184, 0.3);
}

.alert-box {
    max-width: 450px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease-out;
    backdrop-filter: blur(10px);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #51cf66;
}

.alert-info {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #69db7c;
}

.btn-action.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-action.btn-loading::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    margin-top: -12px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.btn-full-width {
    width: 100%;
}

.info-box {
    max-width: 450px;
    margin: 32px auto 0;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--secondary-text);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.info-box .material-symbols-outlined {
    font-size: 20px;
    opacity: 0.7;
}

/* Enhanced button styles for verification */
.btn-action {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-action::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-action:hover::before {
    width: 300px;
    height: 300px;
}

.btn-action:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-action:disabled:hover::before {
    width: 0;
    height: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .verification-container {
        padding: 40px 16px;
    }

    .verification-card {
        padding: 32px 24px;
    }

    .code-input {
        font-size: 28px;
        letter-spacing: 8px;
        padding: 16px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .verification-icon {
        font-size: 64px;
    }
}