html,
body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Poppins", sans-serif;
}

.row {
    margin: 0;
}

.step {
    height: 70vh;
    display: none;
}

.step>* {
    /* min-height: calc(100vh - 190px); */
    height: 100%;
    /* max-height: 83vh; */
    overflow-y: auto;
}

.step>*::-webkit-scrollbar {
    display: none;
}

.step-buttons {
    background: #fff;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    margin-top: auto;
}

.step-buttons button {
    min-width: 100px;
}

.btn {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

@keyframes up-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

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

.form-floating-custom {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 1rem 0.75rem 0.25rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s ease-in-out;
}

.form-floating-custom label {
    position: absolute;
    left: 0.75rem;
    top: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
    pointer-events: none;
    background: #fff;
    padding: 0 0.25rem;
    transition: all 0.2s ease-in-out;
}

.form-floating-custom input:focus+label,
.form-floating-custom input:not(:placeholder-shown)+label,
.form-floating-custom select:focus+label,
.form-floating-custom select:not([value=""])+label,
.form-floating-custom textarea:focus+label,
.form-floating-custom textarea:not(:placeholder-shown)+label {
    top: -0.5rem;
    left: 0.65rem;
    font-size: 0.75rem;
    color: #0d6efd;
}

#sekolahDropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;
    max-height: 260px;
    overflow-y: auto;
}