﻿body, html {
    height: 100%;
    overflow: hidden;
    background-color: black;
    color: #fff;
}

@font-face {
    font-family: 'MsExLight';
    src: url('fonts/Montserrat-ExtraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'MsSBold';
    src: url('fonts/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'MsMedium';
    src: url('fonts/Montserrat-Medium.ttf') format('truetype');
}

.logoTextTop {
    font-family: MsMedium;
    font-size: 18px;
}

.logoTextBottom {
    font-family: MsMedium;
    font-size: 10px;
}

.alertIcon {
    font-size: 24px;
    position: relative;
    top: 5px;
    padding-right: 5px;
}

.banner {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .banner span {
        animation: dissolve 9s infinite;
        opacity: 0;
    }

@keyframes dissolve {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.container-fluid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

.tagline {
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.login-form input:-webkit-autofill,
.login-form input:-webkit-autofill:hover,
.login-form input:-webkit-autofill:focus,
.login-form input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    /*box-shadow: inset 0 0 20px 20px #23232300;*/
}

hr {
    opacity: 1;
}

.custom-container {
    border: 2px solid #333;
    border-radius: 10px;
}

.custom-column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

    .custom-column.left {
        background-color: #23232349;
        padding: 20px;
        /*border-radius: 10px 0 0 10px;*/ /* Rounded only on the left side */
    }

    .custom-column.right {
        padding: 20px;
    }

.custom-img {
    max-width: 120px;
    height: auto;
    display: block;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

    .form-group input {
        border: 2px solid white;
        border-radius: 50px; /* Rounded completely */
        background-color: transparent;
        padding: 12px; /* Increased padding */
        color: white;
        width: 100%; /* Increased input width */
        text-align: center;
        outline: none;
    }

        .form-group input::placeholder {
            text-align: center;
        }

    .form-group label {
        position: absolute;
        top: -10px;
        font-size: 0.8rem;
        background-color: black;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        transition: top 0.3s, font-size 0.3s;
        pointer-events: none;
        padding: 0 5px; /* added */
    }

.login-btn {
    width: 100%;
    border-radius: 50px; /* Rounded completely */
    padding: 12px; /* Increased padding */
    border: 2px solid white;
    cursor: pointer;
    font-family: MsMedium;
}

.login-form {
    margin: auto; /* Pushes the form to the bottom */
    width: 95%;
}

.bottom-right-img img {
    max-width: 100%;
    height: auto;
}

.mainLine {
    font-family: 'MsExLight';
}

.clientTagline,
.subLine {
    font-family: MsExLight;
}

.clientLogo img {
    max-width: 200px;
    height: auto;
}

.btn-warning {
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.link-light {
    font-size: 10px;
}

.break {
    flex-basis: 100%;
    height: 0;
}

#loginTogglerWrapper {
    font-size: 1.6rem;
    line-height: 1px;
}

    #loginTogglerWrapper .bi-toggle2-on {
        font-size: 1.2rem;
        cursor: pointer;
        transform: scaleX(-1);
    }

#faceLogin {
    display: none;
    height: 219px;
    width: 100%;
}

.copyrightText {
    font-size: .57em;
    font-family: 'MsExLight';
}

.forgotForm {
    font-size: 14px;
}

.form-control:focus {
    box-shadow: none;
}

#camMessage {
    font-size: 12px;
    color: #fff;
    padding-left: 9px;
}

#faceLoginVid {
    width: 100%;
    height: 180px;
}

.desktopOnly {
    display: block;
}

@media (max-width: 1366px) {
    .display-3 {
        font-size: 2.2rem; /* Adjust font size as needed for small screens */
    }
    .fs-4{
        font-size: 1rem!important;
    }

    .banner {
        height: 120px;
    }

    .m-5{
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .clientLogo img {
        max-width: 180px;
    }

    .custom-img {
        max-width: 120px;
    }

    .form-group input{
        padding: 6px;
    }
}

@media (max-width: 1140px) { /* Small devices (1140px and below) */
    .display-3 {
        font-size: 2rem; /* Adjust font size as needed for small screens */
    }

    .banner {
        height: 100px;
    }

    .clientLogo img {
        max-width: 150px;
        height: auto;
    }

    .fs-4 {
        font-size: 1rem !important;
    }

    .fs-5 {
        font-size: 1.1rem !important;
    }

    .custom-img {
        max-width: 84px;
    }

    .form-group {
        margin-bottom: 0.6rem;
    }

        .form-group input {
            height: 33px;
            font-size: 14px;
        }


        .form-group label {
            top: -9px;
            font-size: 0.7rem;
        }

    .login-btn {
        padding: 0px;
        height: 33px;
        font-size: 14px;
    }

    .copyrightText {
        margin-bottom: 20px;
    }

    #loginBoxContainer {
        padding: 0px;
    }

    #faceLogin {
        height: 150px;
    }

    .logoTextTop {
        font-size: 15px;
    }

    .logoTextBottom {
        font-size: 8px;
    }

    #faceLoginVid {
        height: 120px;
    }
}

@media (max-width: 991px){
    .desktopOnly {
        display: none !important;
    }
}
