:root {
    --color-blue: #1FA0FF;
    --color-lightest-blue: #97D3FF;
    --color-light-blue: #66BEFF;
}

body {
    width: 100% !important;
    font-family: 'Montserrat' !important;
    background-color: var(--color-blue);
}

.header-styling {
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    position: absolute;
}

.header-styling-white {
    z-index: 3;
    width: 100%;
    height: 34px;
    position: absolute;
    background-color: white;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.header-styling-light-blue {
    z-index: 1;
    width: 100%;
    height: 102px;
    position: absolute;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    background-color: var(--color-light-blue);
}

.header-styling-lightest-blue {
    z-index: 2;
    width: 100%;
    height: 68px;
    position: absolute;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    background-color: var(--color-lightest-blue);
}

/* body:before {
    content: '';
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
} */

.login-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
    /* background-color: white; */
}

/* .login-logo {
    text-align: center;
    margin: 70px 0;
}

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

.login-logo {
    /* top: 0; */
    /* left: 50%; */
    margin: 0 0 45px;
    /* position: absolute; */
    text-align: center;
    /* transform: translateX(-50%); */
}

.login-logo img {
    width: 50%;
    max-width: 212px;
}

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

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

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

.login-form-input {
    width: 80%;
    border: none;
    color: black;
    margin: 0 auto;
    text-align: center;
    padding: 16px 0;
    font-size: 1.25rem;
    background-color: white;
}

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

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

.login-form-input::placeholder {
    color: black
}

.login-form-submit {
    display: block;
    margin: 0 auto;
    font-weight: 600;
    padding: 8px 30px;
    font-size: 1.125rem;
}

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

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

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

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

.login-powered {
    bottom: 0;
    left: 50%;
    color: white;
    text-align: center;
    position: absolute;
    transform: translateX(-50%);
}

@media (max-height: 899px) {
    .login-powered {
        margin-top: 1rem;
        position: initial;
        transform: none;
    }
}

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

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