.success-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fc;
    padding: 30px;
}

.success-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    width: 100%;
    max-width: 550px;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    animation: fadeUp .5s ease;
}

@keyframes fadeUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

h3 {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    font-size: 28px;
}

.welcome-text {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.option-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.option-card:hover {
    border-color: #2563eb;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Disable hover effect for verify email card */
.option-card:not([onclick]):hover {
    border-color: #e5e7eb;
    background: #fff;
    transform: none;
    box-shadow: none;
    cursor: default;
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-card .option-icon {
    background: #10b981;
}

.vendor-card .option-icon {
    background: #f59e0b;
}

.option-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.option-content {
    flex: 1;
}

.option-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.option-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.switch-note {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 30px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

/* Responsive */
@media (max-width: 480px) {
    .option-card {
        padding: 20px;
        gap: 15px;
    }

    .option-icon {
        width: 50px;
        height: 50px;
    }

    .option-icon img {
        width: 25px;
        height: 25px;
    }
}