body {
    background-color: var(--secondary_color);
}

.login-page {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 1000px;
    height: 768px;
}

.metro-logo,
.footer {
    flex-grow: 1;
    display: flex;
    justify-content: center;

}

.login-form {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 500px;
    height: 350px;
    border-radius: 5px;
    background-color: white;
    padding: 53px 125px 58px;
}

.text-danger {
    font-size: 12px;
    text-align: center;
}

h5 {
    color: var(--primary_color);
    text-align: center;
}

.login-input {
    height: 43px;
    margin: 5px 0;
}

.login-button {
    width: 100%;
    height: 43px;
    --bs-btn-bg: var(--primary_color);
    --bs-btn-border-color: var(--primary_color);
}

.footer {
    display: flex;
    flex-flow: column;
    justify-content: end;
}

.footer p {
    color: var(--primary_color)
}

::-ms-reveal {
    display: none;
}

.password-toggle {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: url('../../../img/admin/util/eye.svg') no-repeat center center;
    background-size: 50% auto;
    cursor: pointer;
}

.password-toggle.is-visible {
    background-image: url('../../../img/admin/util/eye_slash.svg');
}
