html, body {
    height: 100%;
}
.login-holder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a6ce39;
}
.login-form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 30px;
    align-items: center;
    padding: 100px;
    border-radius: 15px;
    background: var(--color-header);
}
.login-form div.head {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-form .error {
    background-color: #ffecec;
    border: 1px solid #ee7d7a;
    border-radius: 10px;
    padding: 10px;
    color: red;
}
.login-form .section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}
.login-form .section * > {
    width: 100%;
}
.login-form .section input {
    width: 100%;
    padding: 8px 10px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
}
.login-form button {
    border: 1px solid var(--color-main);
    border-radius: 300px;
    padding: 10px 60px;
    width: 100%;
    cursor: pointer;
    background: var(--color-main);
    font-size: 16px;
    color: white;
}
.login-form button:hover {
    opacity: 0.8;
}
