.login-block {
    width: 100%;

    display: grid;
    margin-top: 20%;
    grid-template-columns: 20% 60% 20%;
}

.form-element {
    display: grid;
    grid-template-columns: 40% 60%;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-element > input {
    border: none;
    outline: none;
    border-bottom: 2px solid var(--sea);
    text-align: center;
}

.form-element > label {
    text-align: center;
}

.button_block {
    text-align: center;
}

.button_block > button {
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 5px;
    border: none;
    padding: 1rem;
    cursor: pointer;

    font-weight: 600;
    background-color: var(--light-green);
}

.button_block > button:hover {
    outline: 3px solid var(--sea);
}
