.verification-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.verification-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #4e73df, #36b9cc);
}

.verification-success {
    position: relative;
    display: inline-flex;
    justify-content: center;
    margin: 30px 0;
}

.success-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: success-pulse 1.5s infinite;
}

.verification-box {
    background-color: #d4edda;
    border-radius: 0.75rem;
    padding: 1.25rem;
    color: #155724;
    font-weight: 500;
    border-left: 5px solid #28a745;
    margin: 1.5rem 0;
}

.verification-steps {
    margin: 2rem 0;
}

.verification-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.verification-step:hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background-color: #4e73df;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 1rem;
}

.step-content {
    flex: 1;
}

.verification-method {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.verification-method:hover {
    border-color: #4e73df;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.verification-method-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.verification-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(78, 115, 223, 0.1);
    color: #4e73df;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.verification-method-content {
    padding-left: 4rem;
}

.token-input {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 0.75rem;
    font-family: monospace;
    letter-spacing: 1px;
}

.token-found {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

@keyframes success-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .verification-card {
        padding: 1.5rem;
    }
    
    .verification-method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .verification-method-content {
        padding-left: 3rem;
    }
}