main {
    width: 100%;
    height: 90vh;
    padding-top: 80px;
    background: #a8a4a1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}
h1 {
    font-size: var(--font-xl);
    color: #644b3c;
}
/* form ingresar */
.form__ingresar {
    width: 70%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* outline: 1px solid var(--background-secondary); */
    border-radius: 20px;
    padding: 10px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    box-shadow: rgba(0, 0, 0, 0.246) 0px 4px 12px;
}
fieldset {
    width: 100%;
    display: flex;
    flex-direction: column;
}
label {
    width: 100%;
    color: rgb(98, 96, 96);
    padding-top: 10px;
}
#password,
#user {
    width: 100%;
    height: 30px;
    border-radius: 30px;
    border: 0;
    padding: 10px 0;
}
.recordatorio {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 8px 0;
}
.recordatorio label {
    width: 0;
    text-align: center;
    padding: 0;
}
.recordatorio input {
    text-align: center;
}

/* btn ingresar */
.btn__ingresarContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
.btn__ingresar {
    padding: 8px;
    border: none;
    border-radius: 35px;
    width: 170px;
    font-size: var(--font-s);
}

p {
    padding: 12px;
    color: rgb(98, 96, 96);
}
a {
    color: var(--text-bg);
    font-size: var(--font-s);
    font-weight: var(--font-semibold);
    letter-spacing: 0.5px;
}