.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-item {
    cursor: default;
}

.payment-option {
    transition: all 0.3s ease;
    border-width: 2px !important;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.payment-option.border-primary {
    border-color: #4a6cf7 !important;
    background-color: rgba(74, 108, 247, 0.05);
}

.payment-option.bg-primary-soft {
    background-color: rgba(74, 108, 247, 0.08);
}

.bg-primary-soft {
    background-color: rgba(74, 108, 247, 0.08);
}

.cursor-pointer {
    cursor: pointer;
}

.toast-info {
    background-color: #e8f4fd;
    border-left: 4px solid #0d6efd;
    padding: 12px 16px;
    border-radius: 8px;
}

.step-card {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    color: #6c757d;
}

.password-toggle:hover {
    color: #212529;
}
