form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    gap: 5px;
    margin: 40px auto;
    justify-content: space-between;
}
input {
    flex: 1;
}
#zpet {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
    margin-top: 20px;
    color: var(--color-hover);
    width: fit-content;
}
#zpet * {
    color: var(--color-hover);
}
@media (min-width: 768px) {
    form {
        flex-direction: row;
    }
}