:root {
    --color-pink: #c8549f;
    --color-purple: #754ae1;
    --color-blue: #3b4699;
    --color-dark-blue: #2a2d72;
    --color-gray: #818181;
    --color-green: #34b5a7;
    --color-light-medium-purple: #6c63ff;
    --color-light-purple: #faf8fe;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100% !important;
    /* font-family: 'Montserrat' !important; */
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/login_background.webp');
}

body:before {
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0 0 0 / 22%);
    backdrop-filter: blur(13px) saturate(150%);
    -webkit-backdrop-filter: blur(13px) saturate(150%);
} 

.container {
    max-width: 1400px;
}

.login-container {
    padding-bottom: 24px;
}

/* .login-logo {
    text-align: center;
    margin-bottom: 32px;
} */

/* .login-logo img {
    max-width: 334px;
} */

.top-left-button-container {
    position: absolute;
    top: 0;
    left: 1rem;
}
@media (max-height: 800px) and (max-width: 991px) {
    .top-left-button-container {
        position: relative;
        left: 0rem;
    }
}

.login-title {
    text-align: center;
}

.login-title h1 {
    font-weight: 400;
    color: white;
    font-size: 1.5rem;
}

.login-form {
    padding: 45px 0;
    margin: 28px auto 0;
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
}

.login-form-input {
    border: none;
    /* border-bottom: 1px solid #D1D1D1; */
    color: #000 !important;
    height: 3rem;
    width: 100%;
    /* width: 80%;
    border: none;
    color: white;
    margin: 0 auto;
    text-align: center;
    padding: 16px 0;
    font-size: 1rem;
    background-color: black; */
}

.login-form-username {
    margin-bottom: 28px;
}

.login-form-password {
    margin-bottom: 30px;
}

.login-form-input::placeholder {
    color: #000;
}
.login-form-input {
    padding-left: 10px;
}
.btn-dark{
    background: #000;
    color: white;
}
.btn-dark:hover{
    background: white;
    color: black;
    border: 1px solid black !important;
}
.login-form-submit {
    /* display: block;
    margin: 0 auto;
    font-weight: 600;
    padding: 4px 16px;
    font-size: 0.925rem; */
}

.login-form-remember {
    display: flex;
    margin: 25px 0 8px;
    align-items: center;
    justify-content: center;
}

.login-form-remember label {
    color: white;
    margin: 0 0 0 8px;
    font-size: 1rem;
}

.login-form-forgot a {
    color: white;
    font-size: 0.875rem;
    text-decoration: underline;
}

.login-form-forgot a:hover {
    opacity: 0.8;
}

.login-powered {
    color: white;
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 340px) {
    .login-logo,
    .login-logo img {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .login-title h1 {
        font-size: 1.5rem;
    }
}

@media (max-height: 767px) {
    body {
        height: 100%;
    }
}