/* File: assets/css/verification.css */

.vts-verification-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.verification-header {
    text-align: center;
    margin-bottom: 30px;
}

.verification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-icon i {
    font-size: 36px;
    color: white;
}

.verification-header h1 {
    margin: 0 0 10px;
    color: #1e293b;
    font-size: 28px;
    font-weight: 600;
}

.email-display {
    color: #6b7280;
    font-size: 16px;
    margin: 10px 0;
}

/* Email Card */
.email-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 25px;
}

.email-icon {
    width: 50px;
    height: 50px;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-icon i {
    color: white;
    font-size: 22px;
}

.email-details h3 {
    margin: 0 0 5px;
    color: #4b5563;
    font-size: 16px;
    font-weight: 500;
}

.email-address {
    margin: 0 0 5px;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    word-break: break-all;
}

.email-note {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Verification Info */
.verification-info {
    margin: 25px 0;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid #4f46e5;
}

.info-box i {
    color: #4f46e5;
    font-size: 20px;
    margin-top: 3px;
}

.info-box h4 {
    margin: 0 0 5px;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.info-box p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Buttons */
.verification-actions {
    margin: 30px 0;
    text-align: center;
}

.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-secondary {
    padding: 12px 25px;
    background: #f3f4f6;
    color: #4b5563;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.btn-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    text-decoration: underline;
}

.action-note {
    margin: 15px 0 0;
    color: #6b7280;
    font-size: 14px;
    text-align: center;
}

.action-note i {
    margin-right: 8px;
}

/* Footer */
.verification-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Messages */
#verification-message {
    margin-bottom: 20px;
}

.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: slideDown 0.3s ease;
}

.alert-success {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert i {
    font-size: 20px;
    margin-top: 2px;
}

.alert p {
    margin: 5px 0;
}

.alert .small {
    font-size: 13px;
    margin-top: 10px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .vts-verification-container {
        margin: 20px 15px;
        padding: 20px;
    }
    
    .verification-icon {
        width: 60px;
        height: 60px;
    }
    
    .verification-icon i {
        font-size: 28px;
    }
    
    .verification-header h1 {
        font-size: 24px;
    }
    
    .email-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 14px;
    }
}