/** Login Authentication Start **/

body, html{
    font-size:16px;
    line-height:1.4;
    background: #000;
    min-height: 100vh;
    font-family: "Lato", sans-serif;

}
body *{
    outline: none;
}

a, a:focus, a:hover {
    text-decoration: none;
    outline: 0;
}


a {
    -webkit-transition: all .3s ease-in 0s;
    -moz-transition: all .3s ease-in 0s;
    -ms-transition: all .3s ease-in 0s;
    -o-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
}

h1, h2, h3, h4, h5, h6{
    margin-top:0; 
}

img{
    max-width:100%;
}

ul{
    list-style:none;
    padding-left:0;
    margin-bottom: 0;
} 

input.form-control {
    height: 48px;
    border-radius: 0;
    box-shadow: none !important;
}
.input-group {
    position: relative;
}
.input-group-text {
    position: absolute;
    left: 0;
    z-index: 9;
    background: transparent;
    border: 0;
    height: 48px;
}
.input-group input.form-control {
    padding-left: 48px;
}


/*Login CSS*/
.login-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.login-content-container {
  width: 100%;
  text-align: center;
}
 
.btn-custom {
    background: linear-gradient(90deg, #d8b861, #fff4d4, #d8b861);
    border: none;
    border-radius: 30px;
    color: #000;
    font-weight: 800;
    padding: 10px; 
    font-size: 18px;
    transition: all 0.3s;
}

.btn-custom:hover {
  background: linear-gradient(0deg, #d8b861, #fff4d4, #d8b861);
}
.login-other-links li { 
    display: block; 
    margin: 12px 0px;
}
.login-other-links li a {
    font-size: 20px; 
    color: #5A77DB;
    text-decoration: underline;
    font-weight: 600;
}
.login-other-links li a:hover {
    color: #fff;
}
.login-footer p {
    margin: 0;
    color: #F2F1F2;
    font-size: 14px;
}
.login-footer p a {
    text-decoration: underline;
    color: #F2F1F2;
    font-size: 14px;
    margin-bottom: 4px;
    display: inline-block;
    padding: 0px 4px;
}
.login-languages a {
    color: #F2F1F2;
    text-decoration: underline;
    padding: 0px 4px;
}
.login-languages {
    color: #F2F1F2;
}
.login-languages a:hover, .login-footer p a:hover {
    color: #5A77DB;
}
.form-inner-wrap {
    max-width: 370px;
    margin: 0 auto;
    padding: 32px 0px 44px;
}
.login-btn-wrap button {
    max-width: 370px;
    margin: 0 auto; 
    position: relative;
    min-height: 48px;
}
.login-btn-wrap {
    position: relative;
}
.login-btn-wrap:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 46%);
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}
.login-welcome-text {
    position: relative;
}
.login-welcome-text:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 46%);
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}
.login-welcome-text span {
    background: #000;
    padding: 0px 36px;
    font-size: 20px;
    color: #646358;
    position: relative;
}
.remember {
    text-align: left;
    font-size: 16px;
    color: #F2F1F2;
    display: flex;
    align-items: center;
}
.remember input[type=checkbox] {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
/** Login Authentication End **/    
