@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* BASE */
body {
    font-family: "Roboto";
    font-size: 14px;
    font-weight: normal;
    color: #FFFFFF;
    background-color: #212423;
}

h1, h2, h3 {
    font-family: "Bebas Neue";
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 28px;
    margin-top: 24px;
}

h3 {
    font-size: 26px;
    margin-top: 16px;
}

.landing-page {
    min-height: 87vh;
}

.base-logo {
    max-height: 20px;
    margin-top: 70px;
    margin-bottom: 30px;
}

/* FOOTER */
.footer {
    background-color: #f8c536;
    min-height: 13vh;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    max-height: 30px;
    margin-bottom: 10px;
}

.footer-text, .footer-link {
    color: #212423;
}

.footer-link:hover {
    color: #212423;
}

/* LOGIN PAGE */
.login-logo {
    max-height: 50px;
    margin-top: 70px;
}

.login-header {
    margin: auto;
    max-width: 280px;
    margin-top: 100px;
}

.login-button {
    min-width: 270px;
    background-color: #FFFFFF;
    font-weight: 700;
    border-radius: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    border: none;
    outline: none;
    color: #212423;
    text-decoration: none;
    padding: 5px 15px;
}

.login-button:hover {
    color: initial;
}

.login-button:focus {
    outline: none;
}

.login-button img {
    height: 40px;
    padding-right: 5px;
}

.cannot-login {
    margin-top: 30px;
}

.cannot-login a {
    color: #FFFFFF;
    text-decoration: none;
}

.cannot-login a:hover {
    color: #f8c536;
}

/* SETTINGS */
.form-section {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

form {
    width: 250px;
}

form div {
    text-align: left;
}

input, select {
    border-radius: 8px;
    border: none;
    outline: none;
    min-width: 250px;
    min-height: 35px;
    margin-bottom: 10px;
    padding-left: 5px;
}

select {
    background-color: #f8c536;
    -webkit-appearance: none;
    appearance: none;
    color: #212423;
}

select option {
    background-color: #FFFFFF;
}

.select-arrow {
    height: 15px;
    width: 15px;
    background-color: #FFFFFF;
    right: 10px;
    top: 10px;
    border-radius: 4px;
    pointer-events: none;
}

.dropdown-arrow {
    height: 8px;
    right: 12.085px;
    top: 14px;
    pointer-events: none;
    position: absolute;
}

.hint {
    height: 15px;
    width: 15px;
    background-color: #f8c536;
    color: #212423;
    font-weight: 600;
    border-radius: 4px;
    right: 10px;
    top: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

form button {
    width: 70px;
    height: 25px;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: #f8c536;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: "Bebas Neue";
    font-size: 16px;
    color: #212423;
}

form button:focus {
    outline: none;
}


.settings-links a {
    text-decoration: none;
    color: #FFFFFF;
}

.settings-links a:hover {
    color: #f8c536;
}

.sign-out {
    padding-right: 20px;
}

/* USER DOCUMENTATION */
.user-documentation-header {
    color: #f8c536;
}

.single-step {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.single-step-image {
    margin: 0 auto 20px auto;
    background-color: #f8c536;
    border: 2px solid #f8c536;
    display: flex;
    max-height: 500px;
    max-width: 100%;
    object-fit: contain;
}

.single-step-text {
    text-align: left;
}

.contact-us {
    margin-top: 30px;
    margin-bottom: 50px;
}

.contact-us a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
}

.modal-window {
    color: #212423;
}

.modal-window h5 {
    font-family: "Bebas Neue";
}

.modal-button:focus {
    outline: none;
}

/* MEDIA */
@media (min-width: 576px) {
    .footer-text {
        margin-top: 7px;
    }

    .footer-content {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .landing-page-margin {
        margin-bottom: 50px;
    }

    .footer {
        min-height: 130px;
    }

    .footer-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer .row {
        --bs-gutter-x: 0rem;
    }
}