body {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: var(--color1);

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.form {
    width: auto;
    height: auto;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.form_item {
    width: 280px;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.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);
    }
}