header {
    background: url(../assets/refer-header-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.floating-input>label, .floating-input.floating-select>label {
    left: 20px;
}

.loader {
    border: 16px solid #bfc5ca;
    /* Light grey */
    border-top: 16px solid #212529;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}