@import url(https://fonts.googleapis.com/css?family=Lato);
/* body { */
/*    background: url('../../images/{env("DOMAINCODE")}/gis-logo/back.png');
    background-color: #444;*/
/*    background: url(../../img/parallax/pinlayer2.png), url(../../img/parallax/pinlayer1.png), url(../../img/parallax/back.png);
*/    
/* font-family: 'lato';
background-size: 100%;
} */

.vertical-offset-100 {
    padding-top: 100px;
}

label{
    color:#000 !important;
    font-weight: 100;
}

h3 {
    font-size: 22px ! important;
}

.btn-primary {
    background: #428BCA;
}
.alert-success {
    color: #fff;
    background-color: #22ddad !important;
    border-color: #acf6ac !important;
}
.alert-danger {
    color: #fff;
    background-color: #ff908d !important;
    border-color: #EF6F6C !important;
}
.alert-info {
    color: #fff;
    background-color: #67C5DF !important;
    border-color: #67C5DF !important;
}
.alert-warning {
    color: #fff;
    background-color: #F89A14 !important;
    border-color: #F89A14 !important;
}
.dhh-logo {
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
}

.bg-logo img{
    width: 107px;
}
.login-bg {
/*    background: #ffffffba;
*/}

.verify_otp {
    display: none;
}

.send_otp {
    display: none;
}


/* ***************************************************** */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('../../../assets/images/images/3.png') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
    padding: 20px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 40px;
    -webkit-box-shadow: 15px 15px 0 -6.5px #dddddd;
    -moz-box-shadow: 15px 15px 0 -6.5px #dddddd;
    box-shadow: 15px 15px 0 -6.5px #dddddd;
}

.login-box h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #121212;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.login-box button {
    width: 100%;
    padding: 10px;
    background: #4d6efa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.login-box button:hover {
    background: #3a56d6;
}

.login-box .forgot-password {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #4d6efa;
    text-decoration: none;
    font-weight: bold;
}

.login-box .forgot-password:hover {
    text-decoration: underline;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.remember-me input {
    display: none;
    /* Hide default checkbox */
}

.remember-me label {
    font-size: 14px;
    cursor: pointer;
    position: relative;
    color: #121212;
}

/* Custom Checkbox Style */
.remember-me label::before {
    content: '';
    width: 13px;
    height: 13px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.remember-me input:checked+label::before {
    background-color: #4d6efa;
    border-color: #4d6efa;
}

.remember-me input:checked+label::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 4px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 0;
}

.footer {
    width: 100%;
    margin: 8px auto;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    font-size: 14px;
    color: #d30000;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.footer div {
    display: flex;
    align-items: center;
    /* Aligns image and text in one line */
    gap: 10px;
    /* Adds spacing between image and text */
}

.footer img {
    height: 24px;
    /* Adjust the image size */
}

.loading-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .8) url('../img/spinner.gif') 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .loading-modal {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .loading-modal {
    display: block;
}

.loading_text {
    position: fixed;
    top: 66%;
    left: 25%;
    right: 25%;
    text-align: center;
    font-size: large;
    font-weight: bold;
}

.verify_otp {
    display: none;
}

.send_otp {
    display: none;
}

.button-container {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

/* Ensures both buttons have the same width */
#send_otp_btn,
.back_btn {
    flex-grow: 1;
    /* Make both buttons take equal space */
    padding: 10px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

/* Styling for Send OTP button */
#send_otp_btn {
    background-color: #4d6efa;
}

#send_otp_btn:hover {
    background: #3a56d6;
}

/* Styling for Back button */
.back_btn {
    background-color: #858585;
    text-decoration: none;
    display: block;
    text-align: center;
}

.back_btn:hover {
    background-color: #6e6e6e;
}