* {
    font-family: "Poppins", sans-serif;
}

.login {
    background: url("../images/background.png");
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: fixed;
}

#login {
    height: 100%;
}


.modal-content {
    background: transparent;
    border: 0;
    text-align: center;
}

.cursive {
    font-family: 'Poppins';
    color: #ffc687;
}

.main-heading {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

.form-custom {
    background-color: rgba(255, 255, 255, 8%);
    padding: 15px;
    border: 0;
    outline: 0;
    color: #fff;
}

label {
    color: rgba(255, 255, 255, .5) !important;
    font-size: 14px;
}

.form-custom:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, 8%) !important;
    border-color: rgba(255, 255, 255, 8%) !important;
    outline: 0;
    box-shadow: none !important;
}

.custom-margin {
    margin-bottom: 20px;
}

.form-custom::placeholder {
    color: #fff;
}

.forgot-password {
    padding-top: 10px;
    text-align: center;
}

.forgot-password a {
    color: #ffc687;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
}

.btn-custom {
    color: #fff;
    border: none;
    outline: none;
    padding: 15px 90px;
    background-image: linear-gradient(to left, #F14856, #F04254, #EB3A50, #E6344D, #E02D4B, #DB2747, #D62143, #D01A40, #CB143C, #C50E38, #C00835);
    border-radius: 13px;
}

.btn-custom:hover {
    color: #fff;
    background-image: linear-gradient(to left, #F14856, #F04254, #EB3A50, #E6344D, #E02D4B, #DB2747, #D62143, #D01A40, #CB143C, #C50E38, #C00835);
}

.btn-custom:active {
    color: #fff;
    background-image: linear-gradient(to left, #F14856, #F04254, #EB3A50, #E6344D, #E02D4B, #DB2747, #D62143, #D01A40, #CB143C, #C50E38, #C00835);
}

.login-btn {
    margin-top: 30px;
}

/* 
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
} */

footer p {
    color: #fff;
    margin-top: 30px;
}

footer p a {
    color: #ffc687;
    text-decoration: none;
}

.sep {
    width: 2px;
    height: 25px;
    background-color: rgb(0 0 0 / 32%);
}

.otp-input {
    max-width: 450px;
    background-color: rgba(255, 255, 255, 8%) !important;
    display: flex;
    padding: 12px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    gap: 0;
    align-items: center;
}

.otp-form {
    border: none;
    outline: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    text-align: center;
    background-color: transparent;
}

.otp-form:focus {
    background-color: transparent !important;
    border: none;
    outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

#logo img {
    width: 150px;
    margin-bottom: 20px;
}

.password-strength {
    display: flex;
}

.password-strength .lines {
    width: 100%;
    background-color: rgba(255, 255, 255, 10%);
    height: 4px;
    margin-right: 4px;
    margin-bottom: 10px;
}

.lines:last-child {
    margin-right: 0;
}

.forgot-password {
    font-size: 14px;
}

.resgister-select {
    background-color: rgba(255, 255, 255, 8%);
    padding: 15px;
    border: 0;
    outline: 0;
    color: #fff;
}

.resgister-select:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, 8%) !important;
    border-color: rgba(255, 255, 255, 8%) !important;
    outline: 0;
    box-shadow: none !important;
}

.resgister-select option {
    background-color: rgba(255, 255, 255, 8%);
    color: #fff;
}

.form-check-label {
    font-size: 16px;
}

.form-check-label a {
    text-decoration: none;
    color: #ffc687;
}

.form-check-input:checked {
    background-color: #FF8A0A !important;
    border-color: #FF8A0A !important;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #fff !important;
}

.loader {
    height: 100%;
    position: fixed;
    z-index: 99999;
    width: 100%;
    background-color: #fff;
    transition: 0.6s;
}

.ball-scale-multiple {
    position: relative;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}


@-webkit-keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.ball-scale-multiple>div:nth-child(2) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.ball-scale-multiple>div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.ball-scale-multiple>div {
    background-color: #091332;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    left: -30px;
    top: 0px;
    opacity: 0;
    margin: 0;
    width: 60px;
    height: 60px;
    -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
    animation: ball-scale-multiple 1s 0s linear infinite;
}

.password-strength-text {
    margin-top: 5px;
    display: none;
    /* Initially hide */
}

.border-select {
    background-color: #77bfff;
    padding: 15px;
    border: 0;
    outline: 0;
    color: #fff;
    box-shadow: none;
}

.border-select:focus {
    border-color: #F0F8FF !important;
    outline: 0 !important;
    box-shadow: none !important;
}