:root {
    --blue: #1D2145;
    --red: #d7282f;
    --yellow: #ffc629;
    --green: #76bc21;
    --orange: #ff5100;
    --light-blue: #009fe3;
    --white: #f2f2f2;
    --grey: #9EA1A2;
    --dark-blue: #004667;
}
* {
    transition: all .3s;
}
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #aaaaaa;
    overflow: hidden;
}

main {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0e7aa4;
    width: 50%;
    min-height: 50%;
    max-height: 75%;
    color: white;
    flex-direction: column;
    text-align: center;
    padding: 50px 0;
    border-radius: 0;
    box-shadow: -5px 5px 0px 0px var(--dark-blue);
}

@media screen and (max-width: 600px) {
    main {
        width: 95%;
    }
}

.screen-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s;
    backdrop-filter: blur(5px);
}

main img {
    height: 25vh;
    width: auto;
    align-self: center;
}

input {
    width: 80%;
    padding: 5px;
    font-family: 'Eurostile', sans-serif;
    font-size: 1em;
    margin: 5px auto;
    font-size: larger;
    border: 0;
    border-radius: 5px;
    outline: none;
}

button {
    width: 30%;
    padding: 5px;
    font-family: 'Eurostile', sans-serif;
    font-size: 1em;
    margin: 5px auto;
    border: 0;
    background-color: #00a65e;
    color: var(--dark-blue);
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
    margin-top: 20px;
    border-radius: 2px;
    font-size: large;
    text-transform: uppercase;
}

h1 {
    font-size: 3em;
    font-family: 'Eurostile', sans-serif;
    margin: 10px 0;
    font-weight: bold;
    text-transform: uppercase;
}

button:hover {
    transform: scale(1.1);
    background-color: #51e9a7;
}

#error-message {
    color: white;
    background-color: #e30613;
    font-weight: bold;
    font-size: 1.2em;
    width: 100%;
    padding: 10px 0;
    opacity: 0;
    transition: 0.5s;
}

#error-message-pwd {
    color: white;
    background-color: #e30613;
    font-weight: bold;
    font-size: 1.2em;
    width: 100%;
    padding: 10px 0;
    opacity: 0;
    transition: 0.5s;
    text-align: center;
}

.floating-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--blue);
    padding: 20px;
    border-radius: 10px;
    z-index: 100;
    min-width: 80%;
    max-width: 100%;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    box-shadow: -8px 8px 0px 0px var(--dark-blue);
}

input {
    border-radius: 0;
    border: 0;
    outline: none;
    padding: 7px;
}

#forgot-password-link {
    text-decoration: underline;
    cursor: pointer;
}