/* *{
  font: normal normal bold 16px/19px Lato;
} */
body {
  background: #101d37;
  font-family: 'Lato', sans-serif;
}
.outer-user-container {
  display: flex;
  height: 100vh;
}
.left-container {
  width: 40%;
  background-color: #232e45;
  color: white;
  padding: 2rem;
}
.inner-user-content {
  width: 60%;
  padding: 2rem;
}
.form-group {
  margin-bottom: 1rem;
}
.login-btn button {
  background: #70F7BE;
  border: 1px solid #70F7BE;
  color: #101d37;
  padding: 14px 20px;
  font-size: 13px;
  border-radius: 8px;
  font-weight: bold;
  text-align:right;
}
.outer-user-container{
    overflow: hidden;
    background: #101d37;
    .left-container {
        float: left;
        background-color: #232e45;
        width: 30%;
        position: relative;
        justify-content: center;
        align-items: center;
        height: 100vh;
        @media(max-width:600px){
            display: none;
        }
        .lt-global-img {
            position: absolute;
            bottom: 0;
            img {
                width: 100%;
            }
        }
        .left-inner-container {
            text-align: center;
            top: 35%;
            position: absolute;
            left: 0;
            right: 0;
            max-width: 250px;
            margin: 0 auto;
            .left-logo-top{
                width: 100%;
                padding: 0 10px;
                box-sizing: border-box;
            }
            .left-powerd-by {
                text-align: left;
                padding: 10px 0 0 45px;
            }
        }
    }
    .inner-user-content {
        width: 70%;
        float: left;
        @media(max-width:600px){
            width: 100%;
        }
        .inner-container {
            padding: 10px;
            box-sizing: border-box; 
        }
        .center-container {
            max-width: 440px;
            margin: 0 auto;
            padding-top: 10%;
            .brand-name {
                text-transform: uppercase;
                font-family: 'Lato';
                color: #fff;
                font-weight: bold;
                font-size: 18px;
                letter-spacing: 2px;
                padding: 0 10px;
                @media(max-width:767px){
                    margin-bottom: 0;
                }
            }
            label {
                color: #fff;
                font-size: 17px;
                line-height: 3;
                font-weight: bold;
            }
            .form-control {
                width: 100%;
                padding: 5px 5px 5px 30px;
                box-sizing: border-box;
                background: transparent;
                border: 1px solid #525b6e;
                height: 40px;
                border-radius: 8px;
                color:#fff;
                &:focus{
                    border: 1px solid #70f7be;
                    outline: none;
                }
            }
            button.forgot-password {
                background: transparent;
                border: 0;
                color: #70f7be;
                text-decoration: underline;
                float: right;
                font-size: 13px;
                cursor: pointer;
            }
            .login-inner-container {
                width: 130px;
                cursor: pointer;
            }
            .feild-item {
                position: relative;
                i.placeholder-icon {
                    position: absolute;
                    left: 10px;
                    top: 10px;
                    img {
                        width: 11px;
                    }
                }
                .show-password {
                    position: absolute;
                    right: 13px;
                    top: 10px;
                }
            }
            .form-group.secondary-link {
                padding: 15px 0;
                overflow: hidden;
            }
        }
        .modal-title{
            color: #fff;
            text-align: center;
            padding: 0 10px;
            font-size: 16px;
            font-weight: 500;
            &:before {
                font-family: "Material Icons";
                content: 'brightness_7';
                vertical-align: middle;
                color: #539ef1;
                font-size: 22px;
                padding-right: 3px;
            }
            &.Afternoon:before{
                color: #f6d84a;
            }
            &.Evening:before{
                content:'brightness_3';
            }
        }

        h2.form-title {
            text-align: center;
            font-size: 32px;
            color: #fff;
            font-weight: 600;
            margin: 15px 0;
            @media(max-width:767px){
                font-size: 25px;
            }
        }
        .subTitle {
            color: #70f7be;
            text-align: center;
            padding: 0 10px;
        }
        .back-login-btn {
            float: left;
        }
    }
}

.custom-loader-overlay {
    display: none;
    position: fixed;
    inset: 0;
    /* shorthand for top:0; bottom:0; left:0; right:0 */
    background-color: rgba(10, 25, 47, 0.95);
    z-index: 9999;

    display: none;
    justify-content: center;
    align-items: center;
}

.custom-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loader-logo {
    width: 120px;
    margin-bottom: 20px;
}

.custom-spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #ffffff44;
    border-top: 6px solid #00d8ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-size: 1.2rem;
    color: #ffffff;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}