body,
html {
    margin: 0;
}
* {
    box-sizing: border-box;
}
.container-fluid {
    height: 100vh;
    background-image: url("/assets/admin/images/login-bg.jpg");
    background-size: cover;
    background-position: center;
}
.left-section {
    background: transparent;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-radius: 10px 0px 0px 10px;
}
.right-section {
    background-color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0px 10px 10px 0px;
}
.login-btn {
    background-color: black;
    color: white;
    width: 100%;
}
.login-btn:hover {
    background-color: #333;
    color: white;
}
.logo {
    text-align: center;
}
.logo img {
    height: 80px;
    object-fit: contain;
}

a {
    color: #333;
    text-decoration: none;
}
input {
    height: 50px;
}
.form-control {
    border: none;
    background-color: whitesmoke;
}
.form-control:hover {
    border: none;
    background-color: whitesmoke;
}

.con {
    background-color: white;
    box-shadow: 0px 0px 4px 0px #02025044;
    max-width: 500px;
}

.otp-input-fields {
    margin: auto;
    background-color: white;
    max-width: 400px;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px;

    input {
        height: 40px;
        width: 40px;
        background-color: transparent;
        border-radius: 4px;
        border: 1px solid #2f8f1f;
        text-align: center;
        outline: none;
        font-size: 16px;
        &::-webkit-outer-spin-button,
        &::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        /* Firefox */
        &[type="number"] {
            -moz-appearance: textfield;
        }
        &:focus {
            border-width: 2px;
            border-color: darken(#2f8f1f, 5%);
            font-size: 20px;
        }
    }
}
