/* RECUPERACIÓN CONTRASEÑA */
@import url("../../../css/core/reset.css");
@import url("../../../css/core/variables.css");
@import url("../../../css/style.css");

.body.reset_password {
    width: 100%;
    /* Background-border */
    background-color: var(--background-login);
    /* Display */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_reset_password {
    /* Size */
    width: 540px;
    /* Background-border */
    background-color: var(--pure-white);
    border-radius: 4px;
    /* Margin-padding */
    padding: 32px 60px;
    /* Display */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 37px;
}

.form_title_box {
    /* Display */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.form_title {
    /* Font */
    color: var(--dark-grey);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.96px;
    text-align: center;
}

.form_title.centered {
    /* Font */
    text-align: center;
}

.form_text_box {
    /* Display */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form_text {
    /* Font */
    color: var(--dark_grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: -0.32px;
    text-align: center;
}

.inputs_box {
    /* Size */
    width: 100%;
}

.label_input_box {
    width: 100%;
}

/* 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;
}

.form_submit_box {
    /* Size */
    width: 100%;
    /* Display */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link_box {
    /* Font */
    text-align: center;
    /* Size */
    width: 100%;
    /* Display */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link {
    /* Font */
    color: var(--link-font-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    /* Display */
    float: right;
}

.link:hover,
.link:active {
    /* Font */
    color: var(--hover-link-font-color);
}

.spinner_box {
    /* Display */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.spinner_icon {
    /* Size */
    width: 32px;
    height: 32px;
    /* Animation */
    animation: spin 1.6s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
