@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

html, body
{
font-family: 'Poppins', sans-serif;
font-size: 15px;
line-height: 1.5;
background: #fff !important;
}

/*
Auth Page Style
*/

.app-body
{
width: 100%;
margin: 0 auto;
}

.container-auth,
.app-container
{
width: 100%;
min-height: 100vh;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 15px;
background-color: #fff;
}

.form-wrap
{
width: 400px;
background: #fff;
border-radius: 10px;
position: relative;
padding: 33px;
}

.form-logo
{
height: auto;
max-width: 100%;
border: none;
border-radius: 0;
box-shadow: none;
width: 100px;
}


/*
App
*/

.w-400{
width: 400px;
}


.auth-body .navbar-brand a svg{
    height: 40px !important;
}

.auth-body .container-lg {
    margin-left: 10px;
    margin-right: 10px;
}

.auth-right-desc {
    padding: 0 30px 100px 23px;
}

.auth-right-desc ul{
    line-height: 36px;
    list-style: none;
}

.text-md{
    font-size: 15px;
}

a{
    font-size: 15px;
    line-height: 23px;
    color: #038203 !important;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    text-decoration: none;
    line-height: 18px;
    font-weight: 700;
}

.border-top-3{
    border-top: 5px solid;
}

@media (min-width: 1200px)
{.auth-bg-image {
    background: url(../imgs/tdOnceLogin_tablet_portraitOnly.png) no-repeat;
    background-position: 50%;
    background-size: contain!important;
}
.pb-lg-158{
    padding-bottom: 158px;
}
}

@media (min-width: 768px) and (max-width: 1023px)
{
    .auth-bg-image {
    background: url(../imgs/tdOnceLogin_tablet_portraitOnly.png) no-repeat;
    background-position: bottom;
}
}
@media (min-width: 768px)
{
.auth-form-box {
    width: 382px;
    background-color: #fffc;
    border: 1px solid #ccc;
    margin-bottom: 40px;
    margin-left: 20px;
}
}

@media (min-width: 768px)
{
    .auth-form-box{
        padding: 15px 40px;
    }
}

.auth-loader{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #000;
    opacity: .57;
    z-index: 1600;
}

.auth-loader .loader-wrapper{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.auth-loader .loader-wrapper .loader-content{
    width: 100px;
    min-height: 100px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    position: relative;
    width: 300px;
    min-height: 80px;
    padding: 15px;
    text-align: left;
    opacity: .8;
    opacity: 1;
    width: 80px;
}

.auth-loader .loader-wrapper .loader-content .app-loader
{
    display: inline-block;
    width: 80px;
    height: 80px;
    background: url(../imgs/logo-loader.png);
    background-size: contain;
    -webkit-animation: none;
    top: 15px;
    left: 15px;
    margin-left: -30px;
}

.show-loader{
    display: table;
}

.title {
    font-size: 25px;
    margin-bottom: 30px;
    text-align: center;
  }

#otp-form {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  #otp-form input {
    border: none;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    font-size: 32px;
    text-align: center;
    padding: 10px;
    width: 100%;
    max-width: 70px;
    height: 70px;
    border-radius: 4px;
    outline: 2px solid rgb(66, 66, 66);
  }
  #otp-form input:focus-visible {
    outline: 2px solid rgb(0, 0, 0);
  }
  #otp-form input.filled {
    outline: 2px solid rgb(7, 192, 99);
  }

  #otp-form input.error {
    outline: 2px solid rgb(192, 13, 7);
  }