body {
    margin: 0;
}

iframe {
    display: none;
}

.loginPage {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
    font-family: sans-serif;
}

.loginContent {
    margin: auto;
}

.loginForm {
    position: relative;
    background-color: #00263a;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    min-height: max-content;
    padding: 4rem;
    z-index: 1;
}

.logoImg {
    margin-right: 50px;
    width: 220px;
    height: 220px;
}

a {
    margin-top: 1rem;
    color: #ffffff;
}

form {
    width: 250px;
    display: grid;
    grid-gap: 1rem;
}

button,
input,
select {
    border: 0;
    border-radius: 0;
    margin-bottom: 0.3em;
    padding: 1.1em;
    height: auto;
    width: 200px;
}

.passwordStrengthMeter {
    width: 230px;
}

select,
button {
    box-sizing: content-box;
}

input:focus,
select:focus {
    box-shadow: 0 0 5px #009a9a;
    outline: none;
}

.loginRemember {
    display: inline-flex;
}

.loginRemember label {
    width: 100%;
}

.loginError {
    word-break: break-word;
    color: orangered;
}

button {
    background: #009a9a;
    color: #fff;
    text-transform: uppercase;
    transition-duration: 0.4s;
}

button:disabled,
button[disabled]:hover {
    background: #00c1c1;
    opacity: 0.5;
}

button:hover {
    background: #007070;
}

label {
    font-weight: 500;
    margin-bottom: 1px;
    display: block;
    color: #ffffff;
}

.passwordInputContainer {
    position: relative;
}

.passwordInputContainer input {
    width: 200px;
}

.showPasswordIcon {
    position: relative;
    margin: 0 auto;
    right: 30px;
    color: #00263a;
}
