@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Thin.ttf");
    font-weight: 100;
}

@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Black.ttf");
    font-weight: 900;
}

body {
    background-color: #fff6f6 !important;
    font-family: "Roboto";
    font-size: 14px;
    font-weight: 400;
    margin: 0 auto;
}

.loginSec {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.loginCard {
    background-color: #fff;
    border-radius: 6px;
    display: flex;
    width: 80%;
}

.loginLeft {
    width: 40%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px 0 0 6px;
    background-color: #D92126;
}

    .loginLeft img {
        width: 80px;
    }

    .loginLeft h6 {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 500;
        margin-top: 1rem;
        margin-bottom: 5px;
    }

    .loginLeft p {
        color: #fff;
        font-size: .8rem;
        margin-top: 0;
    }

.loginForm {
    position: relative;
    width: 60%;
    padding: 2rem;
}

    .loginForm h6 {
        font-size: 1.2rem;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .loginForm p {
        color: #8f8fb1;
        font-size: .8rem;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }

        .loginForm p span {
            color: #FD7E14;
        }

.loginTop {
    position: absolute;
    top: -100px;
    right: 0;
    width: 960px;
    background-color: #fff;
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .loginTop img {
        width: 120px;
    }

    .loginTop span {
        display: block;
        width: 100%;
        background-color: #F8F9FA;
        height: 100%;
        padding: 1rem;
        border-radius: 6px;
        font-weight: 500;
    }

.form-group {
    margin-top: 1rem;
}

    .form-group label {
        display: block;
        color: #1d212f;
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 5px;
    }

.loginForm .form-control, .loginForm .btn {
    font-size: 14px;
}

    .loginForm .form-control:focus {
        outline: none;
        box-shadow: none;
    }

.loginExtlink {
    display: block;
    margin-top: 2rem;
}
.loginForm .checkbox-group, .eyeTrigger {
    cursor: pointer;
    user-select: none;
}

.cap-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1%;
}

    .cap-group .input-group-text {
        cursor: pointer;
    }
#captchaText {
    min-width: 66px;
    color: white;
    font-weight: bold;
}
#captcha-gen {
    background-color: #242729
}
.cap-group img {
    display: block;
    width: 180px;
    height: 35px;
    border-radius: 0.375rem;
}

.otp-group {
    display: flex;
    gap: 1%;
    width: 255px;
}

    .otp-group .form-control {
        text-align: center;
    }

@media all and (min-width: 1300px) {
    .loginCard {
        width: 960px;
    }
}

@media all and (max-width: 1200px) {
    .loginTop {
        right: unset;
        left: 0;
        width: 100%;
    }
}

@media all and (max-width: 768px) {
    .loginSec {
        padding-top: 0;
    }

    .loginCard {
        width: 96%;
    }

    .loginLeft {
        display: none;
    }

    .loginForm {
        width: 100%;
    }

    .loginTop {
        position: static;
        flex-direction: column;
        padding: 0;
        margin-bottom: 2rem;
    }

        .loginTop > * {
            width: 100%;
            text-align: center;
        }
}
