@import "https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css";

body {
    font-family: "Roboto", serif;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* width */
::-webkit-scrollbar {
    display: none;
    width: 0;
}

/* Track */
::-webkit-scrollbar-track {
    display: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
    display: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    display: none;
}

.page-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: auto 1 1;
}

.logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 7em;
    height: 7em;
    overflow: hidden;
    padding: 1em;
}

.footer-container {
    position: fixed;
    bottom: 0;
    right: 0;
    overflow: hidden;
    padding: 1em;
    font-size: 0.75em;
}

.footer-container-left {
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    padding: 1em;
    font-size: 0.75em;
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-container {
    display: flex;
    width: 20vw;
    flex-direction: column;
    gap: 1em;
    margin-top: 1em;
}

@media (max-width: 768px) {
    .box {
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .form-container {
        width: 90vw;
        margin-bottom: 1em !important;
    }
}

.quick-access-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.quick-access-container :first-child {
    display: flex;
    flex: 1;
}

.button-width {
    margin-top: 1em;
    width: 100%;
}

.error-text {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    color: #ff6685;
}

.success-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.password-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.password-container span {
    margin-left: -2em;
}

.clickable {
    cursor: pointer;
    z-index: 20 !important;
}
