/**
Sección general de Auth
 */
.auth-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: #999 1px solid;
    border-radius: 16px;
    padding: 35px;
    background-color: white;
}

.auth-container.auth-container-width {
    max-width: 750px;
}

/**
Sección de Login
 */
#loginForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    width: 100%;
    max-width: 250px;
}

#loginForm div label {
    display: none;
}

.login-fields {
    width: 100%;
}

.forgot, .register-link {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.forgot a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

.register-link {
    flex-direction: row;
    column-gap: 15px;
}

.register-link p {
    padding: 0;
    margin: 0;
}

/**
Sección de Registro
 */
#regUserFields {
    width: 100%;
    max-width: 325px;
}

#regCompanyFields {
    display: none;
    width: 100%;
    max-width: 325px;
}

#regForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    width: 100%;
}

#regForm div label {
    display: none;
}

#regForm .form-group label {
    display: block;
}

#regForm .form-group {
    flex-direction: column;
}

.form-group {
    display: flex;
    column-gap: 10px;
}

#regRole {
    height: 25px;
    padding: 0 15px;
    font-size: 14px;
}

#regButton {
    max-width: 325px;
}

.reg-fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    column-gap: 5px;
}

.reg-form-fields {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

/**
Sección link reseteo contraseña
 */
.reset-password {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-top: 20px;
}

.reset-password label {
    display: none;
}
