/* Authentication Verification Styles for Veritas AI */

body {
    background-color: #f8f9fa;
}

/* Verification Section */
.verification-section {
    padding: 120px 0 60px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.verification-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.verification-header {
    margin-bottom: 30px;
}

.security-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.security-icon i {
    font-size: 36px;
    color: #0d6efd;
}

.verification-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a192f;
}

.verification-header p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Verification Options */
.verification-options {
    margin-bottom: 30px;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: center;
}

.nav-tabs .nav-link {
    color: #495057;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #0d6efd;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    background-color: transparent;
    border-bottom-color: #0d6efd;
}

/* Verification Form */
.verification-form {
    padding: 20px 0;
}

.verification-form p {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 20px;
}

.code-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.code-input {
    width: 50px;
    height: 60px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.code-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.countdown {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.verify-btn {
    font-weight: 600;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.resend-btn {
    font-size: 0.9rem;
    text-decoration: none;
}

/* Verification Footer */
.verification-footer {
    margin-top: 30px;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.trouble-link {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: none;
}

.trouble-link:hover {
    color: #0d6efd;
    text-decoration: underline;
}

/* Footer Links */
.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 20px;
}

.footer-links a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .verification-section {
        padding: 100px 0 40px;
    }
    
    .verification-card {
        padding: 30px 20px;
    }
    
    .security-icon {
        width: 60px;
        height: 60px;
    }
    
    .security-icon i {
        font-size: 28px;
    }
    
    .verification-header h1 {
        font-size: 1.5rem;
    }
    
    .code-input {
        width: 40px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .footer-links {
        text-align: center !important;
        margin-top: 10px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}
