:root {
    --main: #0f7fa5;
    --background: #e8f3f5;
    --white: #ffffff;
    --error-color: #ff0033;
    font-family: sans-serif;
}

.auth-page-container {
    min-height: 100vh;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.auth-page__submit {
    background-color: var(--main);
    border-radius: 12px;
    color: var(--white);
    padding: 6px 52px;
    text-align: center;
    border: none;
    font-size: large;
}
.auth-page__submit:hover {
    background-color: #0b5f79;
}

.auth-page__submit-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

h1 {
    margin-bottom: 16px;
}

input {
    border-radius: 8px !important;
    margin-top: 8px;
    margin-bottom: 16px;
    background-image: none;
    min-width: 240px;
    max-width: 340px;
    width: calc(100vw - 400px) !important;
    line-height: 2rem;
}

label span {
    padding-left: 8px;
    display: block;
}

.flash {
    color: var(--error-color);
    text-align: center;
    font-size: small;
}