html {
    scroll-behavior: smooth;
}
  
.text-custom-blue {
    color: #5A86E9;
}

.bg-white-scroll {
    background-color: #FFFFFF;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button-custom {
    background-color: #63D0EC;
    color: #63D0EC;
    border-radius: 9999px;
    padding: 10px 40px;
    border: none;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out; 
    cursor: pointer;
    outline: none;
    color: #ffffff;
}

.button-custom:hover {
    background-color: #ffffff;
    color: #63D0EC;
    transform: scale(1.05);
}

.bg-custom-blue {
    background: #5A86E9;
}
.bg-custom-target {
    background-color: #EAF1FF;
}
.radius-custom {
    border-radius: 20px;
}

.radius-custom-card {
    border-radius: 50px;
}

@media (max-width: 640px) {
    .radius-custom-card {
        border-radius: 20px 20px 0 0;
    }
}

.radius-custom-b{
    border-radius: 50px 50px 0 0;
}

.radius-custom-items {
    border-radius: 30px;
}

.progress-bar {
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 20px;
}
.invalid {
    border-color: red;
}


.progress-bar-inner {
    background-color: #ffaa00;
    border-radius: 5px;
    height: 20px;
    transition: width 0.3s ease;
}

.step-card {
    width: 400px;
    padding: 20px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.step-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.step-card.selected {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
    background: linear-gradient(90deg, #ff4800db 0%, #debd37f9 100%);
    color: #fff;
}

.step-btn {
    background-color: #007bff;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.step-btn-success {
    background-color: #4fd54d;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.step-btn:hover {
    background-color: #0056b3;
}

.step-btn.prev {
    margin-right: 10px;
}