@import url('https://fonts.googleapis.com/css2?family=Varta:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Varta', sans-serif;
    overflow: hidden;
}


body {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.063);
}

.card {
    border: none;
    border-top: 5px solid rgb(69, 212, 244);
    background: #212042;
    color: #57557a;
}

.main-div {
    height: 100vh;
}

.logo {
    width: 100px;
    height: 100px;
}

p {
    font-size: 20px;
    font-weight: 700;
}

a {
    text-decoration: none !important;
}

.division {
    width: 100%;
    text-align: center;
    margin: 10px auto 20px;
}

.division .impInfo {
    width: 100%;
    text-align: left;
    color: #ffffffbd;
    margin: 10px auto 20px;
}


.main-heading {
    font-weight: 700;
    font-size: 25px;
}

.myForm {
    padding: 0 25px 0 30px;
}

.form-control {
    border: 1px solid #57557a;
    border-radius: 30px;
    background: #212042;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff !important;
}

[placeholder]:focus::-webkit-input-placeholder {
    transition: opacity 0.5s 0.5s ease;
    opacity: 0;
}

.form-control::placeholder {
    color: #57557a !important;
}

.form-control:focus {
    border: 1px solid #57557a;
    border-radius: 30px;
    background: #212042;
    box-shadow: none;
    letter-spacing: 1px;
    color: #fff !important;
}

.an {
    text-align: left !important;
}

.bn {
    text-decoration: none;
    text-align: right !important;
}

.bn:hover {
    cursor: pointer;
}

.form-check-input {
    width: 1rem !important;
    height: 1rem !important;
}

.form-check-label {
    margin-top: 3px !important;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(175, 106, 252, 1) 39%,
            rgba(116, 17, 255, 1) 100%) !important;
    border: none;
    border-radius: 50px;
}

small {
    color: #f2ceff;
}

.register {
    color: #f2ceff;
    text-align: right !important;
}

.register:hover {
    color: #57557a;
    text-align: right !important;
}


.otp-input {
    width: 45px;
    height: 45px;
    font-size: 24px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ccc;
}

/* Optional: To prevent spinner if type="number" is used anywhere else */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}



@media(max-width:768px) {

    .row {
        --bs-gutter-x: 0rem !important;
        --bs-gutter-y: 0;
    }

    .fa-brands {
        margin-left: 1rem !important;
    }

    .form-check-label {
        font-size: 12px;
    }

    .bn {
        text-decoration: none;
        text-align: center !important;
        font-size: 15px;
    }

    .an {
        text-decoration: none;
        text-align: center !important;
        font-size: 10px;
        margin-bottom: 2px;
    }

    .social {
        display: none;
    }

    .main-heading {
        color: #f2ceff;
    }


}



.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #212042;
    /* Dark background for OFF state */
    transition: 0.4s;
    border-radius: 22px;
}

.slider::before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #57557A;
    /* Green when ON */
}


input:checked+.slider.round::before {
    background-color: #35bb44;
    /* Green when ON */

}

input:checked+.slider::before {
    transform: translateX(22px);
}


.forgot-password-link {
    color: #57557A;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.forgot-password-link:hover {
    color: #e6e6e6;
    text-decoration: underline;
}