.content {
    min-height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/bg_login.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
}
.login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 420px;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    gap: 40px;
}
.login__redirect {
    text-align: center;
}
.login__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login__subtitle {
    color: var(--color-gray);
}

.logform {}
.logform__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.logform__section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.logform__section--hidden {
    display: none;
}

.logform__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.logform__form .logform__section:last-child {
  margin-top: 6px;
}

.logform__label {
    width: 30%;
    text-align: right;
}
.logform__input {
    min-width: 30%;
}

.message {
    
}
.message--error {
    color: var(--color-red);
}