@layer {
    section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
    }
    section .login_form {
        width: 290px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        height: 700px;
        color: var(--color-on-secondary-container);
    }
    section .login_form h2 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    section .login_form label {
        width: 100%;
    }
    section .login_form label span {
        display: block;
    }
    section .login_form label input {
        width: 100%;
    }
    section .login_form button {
        height: 40px;
        width: 100%;
    }
    section .login_form a {
        color: var(--color-tertiary);
        transition: color 0.3s linear;
    }
    section .login_form a:hover {
        color: var(--color-focus);
    }
}
