body {
    background: rgba(244, 239, 227, 0.3);
    margin: 0;
}

input[type="submit"] {
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    font-family: 'Poppins', sans-serif;
    color: white;
    padding: 5px 10px;
    font-size: 1em;
    font-weight: 300;
    cursor: pointer;
}

input.hidden {
    width: 0px;
    height: 0px;
    margin: 0px;
    padding: 0px;
    outline: none;
    border: 0px;
}

.main_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    width: 100vw;
    height: 100vh;
}

.login_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10vh;
    width: 400px;
}

.login_logo {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #2E6645;
    margin-bottom: 10px;
}

.login_logo > img {
    width: 100px;
    height: auto;
}

.login_logo > h2 {
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    font-weight: 900;
    font-size: 1.5em;
}

.input_label {
    color: inherit;
    font-family: inherit;
    font-weight: 500;
    margin-left: 4px;
    margin-block-start: 10px;
    margin-block-end: 3px
}

.input_small {
    font-size: 0.8em;
    color: rgba(0, 0, 0, 0.7);
    margin-left: 5px;
    margin-block-start: 3px;
    margin-block-end: 0px;
}

.normal_text {
    font-size: 10em;
    color: rgba(0, 0, 0, 0.7);
    margin-left: 5px;
    margin-block-start: 3px;
    margin-block-end: 0px;
}

.input {
    padding: 5px 10px;
    border-color: rgba(204, 204, 204, 0.6);
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    color: #244b70;
    font-family: inherit;
    font-weight: inherit;
    font-size: 1em;
    width: 100%;
    background-color: white;
    box-sizing: border-box;
    height: fit-content;
}

.login_form_qr_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.login_form_qr_container > p {
    text-align: center;
    font-size: 0.98em;
    color: rgba(0, 0, 0, 0.5);
}

.login_form_container {
    border-radius: 4px;
    background-color: white;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px;
}

.login_form_container > form > h2 {
    font-weight: 300;
    max-width: fit-content;
    margin-block-start: 0px;
    margin-block-end: 5px;
    text-align: center;
    font-size: 1.1em;
    color: rgba(0, 0, 0, 0.5);
}

.login_form_container hr {
    border: 1px solid rgb(230, 230, 230);
    margin: 20px 0px;
}

.login_actions {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.button_login {
    background-color: #78b730;
    border: solid 0.1em #78b730;
}

.button_sms {
    background-color: #065287;
    border: solid 0.1em #065287;
}

@media screen and (max-width: 580px) {
    .login_container {
        margin-top: 2vh;
        width: 100vw;
    }

    .login_form_container {
        box-shadow: unset;
        background-color: unset;
        padding: 20px;
    }

    .login_logo > img {
        width: 70px;
    }

    .login_form_container > form > h2 {
        max-width: unset;
    }
}