body {
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

main {
    min-width: 100%;
    min-height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.section_login form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section_login img {
    width: 200px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.section_login input {
    outline: none;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #d8d8d8b7;
    border-radius: 10px;

    width: 400px;
    height: 30px;

    font-weight: bold;
}

.section_login_button {
    background: none;
    border-radius: 10px;

    font-weight: bold;
    border: 1px solid #d8d8d8b7;

    padding: 10px 50px;

    cursor: pointer;
}

.section_login_button:hover {
    background: linear-gradient(98deg, #FDA101 -100%, #FB7D01 29.37%, #F95801 100%);
    box-shadow: 0 4px 12px rgba(249, 88, 1, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.form_message_error_span {
    font-weight: bold;
    color: red;

    margin-top: 20px;
}