body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: #fbf8ff;
    overflow-x: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.main-blue {
    background: #0152dd;
}

.hero-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.form-input-group label {
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-input-group input:focus+label,
.form-input-group input:not(:placeholder-shown)+label {
    transform: translateY(-2.2rem) scale(0.85);
    color: #003ec7;
    font-weight: 600;
}

.tab-active {
    color: #003ec7;
    border-left: 4px solid #003ec7;
    background: #dfe3ff;
}

.nav-link-active {
    color: #003ec7;
    border-bottom: 2px solid #003ec7;
}

.step-line::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 2rem;
    bottom: -2rem;
    width: 2px;
    background: #c3c5d9;
    z-index: -1;
}

@media (min-width: 768px) {
    .step-line::after {
        left: 2rem;
        right: -2rem;
        top: 50%;
        width: auto;
        height: 2px;
    }
}