.wayfy-form-wrapper {
    /*max-width: 420px;*/
    margin: auto;
    background: linear-gradient(
  180deg,
  rgba(5, 8, 26, 0.6),
  rgba(11, 16, 51, 0.6)
);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 200, 255, .15);
    color: #fff;
    font-family: Inter, sans-serif;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #8fdcff;
}

input,
select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #1e3a5f;
    background: #020417;
    color: #fff;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #00b3ff, #00f0ff);
    color: #001018;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    opacity: .9;
}

.wayfy-success {
    display: none;
    text-align: center;
    font-size: 18px;
    color: #00eaff;
}

.wayfy-form-wrapper .wayfy-step {
    display: none !important;
}

.wayfy-form-wrapper .wayfy-step.active {
    display: block !important;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wayfy-progress {
    width: 100%;
    height: 6px;
    background: #0a1433;
    border-radius: 999px;
    margin-bottom: 25px;
    overflow: hidden;
}

.wayfy-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00b3ff, #00f0ff);
    transition: width .4s ease;
}

.wayfy-actions {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wayfy-prev {
    background: transparent;
    border: 1px solid #00cfff;
    color: #00cfff;
}

.wayfy-prev:hover {
    background: rgba(0, 200, 255, .1);
}

.wayfy-invalid{
  outline: 2px solid rgba(255,107,107,.9);
  border-color: rgba(255,107,107,.9);
}