.fx_f_authForms {
    width: 400px;
    max-width: 450px;
    min-height: 505px;
    height: fit-content;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: white;
    padding: 20px 30px;
    box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01), 0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09), 0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
}

.fx_f_authForm.active {
    display: flex;
}

.fx_f_authForm {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fx_f_titleAuth {
    text-align: center;
    margin: 10px;
    font-size: 2em;
    font-weight: bold;
}

.fx_f_notePTitle {
    font-size: 0.9em;
}

.fx_f_formElement {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.fx_f_checkboxes {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    margin-bottom: 5px;
}

.fx_f_checkboxes p {
    font-size: 0.8em;
}

.fx_f_checkboxesInput {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    cursor: pointer;
}

.fx_f_passwordWrapper {
    position: relative;
    width: 100%;
}

.eyeIconPas {
    position: absolute;
    top: 8px;
    right: 10px;
    color:  var(--primary-color);
}

.fx_f_authForm a {
    margin-top: 10px;
    color:  var(--primary-color);
    cursor: pointer;
    text-decoration: none;

}

.fx_f_dateNameFrom {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}


.popUpPrivacyBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo oscuro con opacidad */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Asegura que esté por encima de otros elementos */
}

.popUpPrivacy {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    max-height: 85%;
    margin: 20px;
    text-align: center;
    overflow: auto;
    z-index: 100;
}

.closePopupTerms  {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: red;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 
}

/* -------///----- */
.fx_f_gbCloseLogoutBack {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.fx_f_gbCloseLogout {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.fx_f_titleAuth {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

.fx_f_notePTitle {
    margin-bottom: 20px;
    font-size: 14px;
}

.fx_f_gbCloseLogout div {
    display: flex;
    justify-content: center;
    gap: 10px;
}