/* INDEX */
@import url("core/reset.css");
@import url("core/variables.css");
@import url("style.css");

.body.login {
    width: 100%;
    height: 100dvh;

    background-color: var(--background-login);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.main.login {
    /* Margin-padding */
    padding: 0;
    padding-top: 80px;
    height: 100%;
}

.form_login {
    /* Size */
    width: 100%;
    max-width: 540px;
    /* Background-border */
    background-color: var(--pure-white);
    border-radius: 4px;
    /* Margin-padding */
    padding: 40px 106px;
    /* Display */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 37px;
}

.form_title_box {
    /* Display */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.form_title {
    color: var(--dark-grey);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.96px;
}

.form_title_small {
    /* Font */
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.credentials_box {
    /* Size */
    width: 100%;
    /* Display */
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form_login label {
    /* Font */
    color: var(--dark-grey);
    font-size: 13px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    /* Size */
    width: 100%;
    /* Margin-padding */
    margin-bottom: 4px;
}

.password_box_container {
    /* Display */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.password_box {
    /* Size */
    width: 100%;
    /* Position */
    position: relative;
}

/* Icon */
.toggle_password {
    cursor: pointer;
    /* Size */
    width: 24px;
    height: 100%;
    /* Background-border */
    background: transparent;
    /* Display */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Position */
    position: absolute;
    top: 0;
    right: 16px;
}

.password_link {
    color: var(--link-font-color);
    float: right;
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.password_link:hover,
.password_link:active {
    /* Font */
    color: var(--hover-link-font-color);
}

.submit_box,
.registration_box {
    /* Size */
    width: 100%;
    /* Display */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.registration_box p {
    font-size: 13px;
    text-align: center;
}
.registro_box {
    /* Size */
    width: 100%;
    /* Display */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.registro_box p {
    /* Font */
    color: var(--sec-font-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
}

.form_login button.button {
    font-weight: 500;
    height: 40px;
}

.form_login input.input {
    height: 40px;
}
