.inner_container {
    display: flex;
    gap: 0.5em;
}

.login_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.75em;
    margin: 5em auto;
    gap: 0.3em;
}

.login {
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 15px;
    box-shadow: 3px 3px 5px 0px;
    width: fit-content;
    padding: 1em;
    gap: 0.5em;
    align-items: center;
}

.labels,
.inputs {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.labels {
    justify-content: space-between;
}

.tiny {
    font-size: 0.5em;
}

.tiny a {
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.aceptar {
    border: 1px solid black;
    border-radius: 15px;
    cursor: pointer;
    width: fit-content;
    padding: 0.5em;
    text-align: center;
}

.empty {
    content: "\00a0";
    /* Non-breaking space character */
    display: inline-block;
}