body {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: var(--color1);

    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.logout_btn, .header_btn {
    width: auto;
    height: auto;
    color: var(--color4);
    background: var(--color2);
    text-decoration: none;
    transition: all .4s ease;

    position: absolute;
    top: 2%;
    left: 2%;
    padding: 6px 10px;
    border-radius: 4px;
}

.form {
    width: auto;
    height: auto;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.form_item {
    width: 280px;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.label {
    width: auto;
    height: auto;
    color: var(--color4);
}

.input {
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    padding: 2px;
}

.submit {
    background: var(--color2);
    width: 100%;
    height: auto;
    margin-top: 5px;
    border-radius: 4px;
    padding: 4px 0;
    cursor: pointer;
    transition: all .4s ease;
    border: none;
}

@media(hover:hover) {
    .submit:hover {
        background: var(--color3);
    }

    .logout_btn:hover {
        background: var(--color3);
    }
}