/* Email Verification Page Styles */
.verification-page {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    padding: 40px 20px;
}

.verification-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.verification-loading,
.verification-success,
.verification-error,
.verification-expired {
    padding: 50px 40px;
    text-align: center;
}

.spinner-wrapper {
    margin-bottom: 30px;
}

.spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    position: relative;
}

.dot1, .dot2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #007bff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
    animation-delay: -1.0s;
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
}

.success-icon {
    color: #28a745;
    font-size: 60px;
    margin-bottom: 20px;
}

.error-icon {
    color: #dc3545;
    font-size: 60px;
    margin-bottom: 20px;
}

.warning-icon {
    color: #ffc107;
    font-size: 60px;
    margin-bottom: 20px;
}

.verification-card h2 {
    color: #343a40;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.verification-card p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 16px;
}

.error-message {
    color: #dc3545;
    font-weight: 500;
}

.next-steps {
    margin-top: 25px;
}

.app-note {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.error-actions,
.expired-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.verification-page .btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 14px;
    min-width: 140px;
    justify-content: center;
}

.verification-page .btn-primary {
    background: #007bff;
    color: white;
}

.verification-page .btn-primary:hover {
    background: #0056b3;
}

.verification-page .btn-secondary {
    background: #6c757d;
    color: white;
}

.verification-page .btn-secondary:hover {
    background: #545b62;
    text-decoration: none;
    color: white;
}

.verification-page .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.resend-form {
    padding: 30px 40px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.resend-form h3 {
    color: #343a40;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.resend-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.resend-form .form-group label {
    display: block;
    margin-bottom: 6px;
    color: #495057;
    font-weight: 500;
    font-size: 14px;
}

.resend-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.resend-form .form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.resend-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .verification-page {
        padding: 20px 15px;
        min-height: 60vh;
    }

    .verification-loading,
    .verification-success,
    .verification-error,
    .verification-expired {
        padding: 30px 25px;
    }

    .verification-card h2 {
        font-size: 22px;
    }

    .resend-form {
        padding: 25px 25px;
    }

    .resend-actions {
        flex-direction: column;
    }

    .verification-page .btn {
        width: 100%;
    }
}