@charset "UTF-8";
/**
 * Auth Styles - Encapsulado
 * Estilos para login, registro y cuenta de usuario
 * Alta especificidad para evitar conflictos con el tema
 */


@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --blanco: #fff;
    --blancorgb: 255,255,255;
    --negro: #000;
    --negrorgb: 0,0,0;
    --azul: #2f4c8d;
    --naranja: #ff6a13;
    --naranjac: #ffa06a;
    --azulc: #4180e4;
    --azul2: #182647;
    --fondo: #d4dce9;
    --gris: #f5f5f3;
    --gris2: #E9EAEF;
    --gris3: #ECEBEE;
    --gris4: #B1B3BE;
    --gris5: #292E31;
    --gris6: #898989;
    --gris7: #F0F0F4;
    --modulo: #eef1f6;
    --primario: #9d9278;
    --amarillo: #FFB500;
    --amarilloc: #FFCD00;
    --font: "Lato",sans-serif
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html {
    height: 100%;
}
body {
    height: 100%;
    line-height: 1;
    font-family: "Lato", sans-serif;
    background-color: #F4F4F4;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.gris6 {
    color: var(--gris6);
}

.bgblanco {
    background: var(--blanco);
}

.bgamarillo {
    background: var(--amarillo);
}

.bggris7 {
    background: var(--gris7);
}


.fs18 {
    font-size: 18px;
}


.img-perfil {
    width: 24px;
    height: 24px;
}

.img-perfil img {
    display: block;
    margin: auto;
}

.btn-amarillo {
    color: var(--negro);
    background: var(--amarillo);
    font-size: 18px;
}

.img-cuenta {
    padding: 50px 10px;
    background: #FFF;
    border-radius: 50%;
}

.row-login {
    max-width: 390px;
    margin: auto;
}

/* ==========================================================================
   MODAL DE LOGIN - Encapsulado con #authLoginModal
   ========================================================================== */

#authLoginModal.modal .modal-dialog {
    max-width: 500px;
}

#authLoginModal.modal .modal-content {
    border: none;
    border-radius: 8px;
    overflow: visible;
    height: auto!important;
    width: 100%;
    max-width: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#authLoginModal.modal .modal-body {
    padding: 0;
}

/* Botón cerrar */
#authLoginModal.modal .btn-close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 1060;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    padding: 8px;
    opacity: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#authLoginModal.modal .btn-close:hover {
    background-color: #f8f9fa;
}

/* Header amarillo */
#authLoginModal.modal .bgamarillo {
    background: #FFB500;
}

#authLoginModal.modal .bgamarillo h2 {
    color: #000;
    font-family: Lato, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* Contenedor del formulario */
#authLoginModal.modal .wrapper-form {
    padding: 2rem;
}

/* Labels - Estilos del Figma */
#authLoginModal.modal .wrapper-form .form-label,
#authLoginModal.modal .wrapper-form label.form-label,
#authLoginModal.modal .wrapper-form label {
    display: block;
    color: #242D2D;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 144%;
    text-align: left;
    margin-bottom: 0.5rem;
}

/* Inputs */
#authLoginModal.modal .wrapper-form .form-control,
#authLoginModal.modal .wrapper-form input.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #242D2D;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-align: left;
}

#authLoginModal.modal .wrapper-form .form-control:focus {
    border-color: #FFB500;
    box-shadow: 0 0 0 0.2rem rgba(255, 181, 0, 0.25);
    outline: none;
}

#authLoginModal.modal .wrapper-form .form-control::placeholder {
    color: #6c757d;
    font-weight: 400;
}

/* Links */
#authLoginModal.modal .wrapper-form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#authLoginModal.modal .wrapper-form ul li {
    padding: 0 5px;
}

#authLoginModal.modal .wrapper-form ul a,
#authLoginModal.modal .wrapper-form a {
    color: #0d6efd;
    text-decoration: underline;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

#authLoginModal.modal .wrapper-form ul a:hover,
#authLoginModal.modal .wrapper-form a:hover {
    color: #FFB500;
}

/* Botón Amarillo */
#authLoginModal.modal .btn-amarillo,
#authLoginModal.modal button.btn-amarillo,
#authLoginModal.modal .wrapper-form .btn-amarillo {
    display: inline-block;
    color: #000;
    background-color: #FFB500;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 0.5rem 2rem;
    border: 2px solid #FFB500;
   
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

#authLoginModal.modal .btn-amarillo:hover,
#authLoginModal.modal button.btn-amarillo:hover {
    background-color: #e6a300;
    border-color: #e6a300;
    color: #000;
}

/* Mensajes de error/éxito */
#authLoginModal.modal .auth-form-error,
#authLoginModal.modal .auth-form-success {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-family: Lato, sans-serif;
    font-size: 14px;
}

#authLoginModal.modal .auth-form-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

#authLoginModal.modal .auth-form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Row login - centrar contenido */
#authLoginModal.modal .row-login {
    max-width: 390px;
    margin: 0 auto;
}

/* ==========================================================================
   PÁGINA DE REGISTRO - Encapsulado
   ========================================================================== */

.auth-register-page .wrapper-form .form-label,
.auth-register-page .wrapper-form label {
    display: block;
    color: #242D2D;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 144%;
    text-align: left;
    margin-bottom: 0.5rem;
}

.auth-register-page .wrapper-form .form-control {
    padding: 0.75rem 1rem;
    font-size: 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.auth-register-page .wrapper-form .form-control:focus {
    border-color: #FFB500;
    box-shadow: 0 0 0 0.2rem rgba(255, 181, 0, 0.25);
}

.auth-register-page .btn-amarillo {
    color: #000;
    background-color: #FFB500;
    font-size: 18px;
    padding: 0.5rem 2rem;
    border: 2px solid #FFB500;
   
}

.auth-register-page .btn-amarillo:hover {
    background-color: #e6a300;
    border-color: #e6a300;
}

/* ==========================================================================
   PÁGINA DE CUENTA - Encapsulado
   ========================================================================== */

.account-page .wrapper-form .form-label,
.account-page .wrapper-form label {
    display: block;
    color: #242D2D;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 144%;
    text-align: left;
    margin-bottom: 0.5rem;
}

.account-page .wrapper-form .form-control {
    padding: 0.75rem 1rem;
    font-size: 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.account-page .wrapper-form .form-control:focus {
    border-color: #FFB500;
    box-shadow: 0 0 0 0.2rem rgba(255, 181, 0, 0.25);
}

.account-page .btn-amarillo {
    color: #000;
    background-color: #FFB500;
    font-size: 18px;
    padding: 0.5rem 1.5rem;
    border: 2px solid #FFB500;
   
}

.account-page .btn-amarillo:hover {
    background-color: #e6a300;
    border-color: #e6a300;
}

/* Sidebar cuenta */
.account-page .wrapper-cuenta li {
    font-size: 18px;
    cursor: pointer;
}

.account-page .wrapper-cuenta li button {
    border: none;
    background: transparent;
}

.account-page .wrapper-cuenta li button:hover,
.account-page .wrapper-cuenta li button.active {
    color: #000;
    background: #fff;
}

.account-page .gris6 {
    color: #898989;
}

.account-page .img-perfil {
    width: 24px;
    height: 24px;
}

.account-page .img-perfil img {
    display: block;
    margin: auto;
}

/* ==========================================================================
   MODAL DE REVIEW - Encapsulado
   ========================================================================== */

#authReviewModal.modal .modal-content {
    border: none;
    border-radius: 8px;
    position: relative;
    height: auto;
    max-width: 100%;
    width: 100%;
}

#authReviewModal.modal .btn-close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 1060;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    padding: 8px;
    opacity: 1;
    width: 32px;
    height: 32px;
}

#authReviewModal.modal .wrapper-form .form-label,
#authReviewModal.modal .wrapper-form label {
    display: block;
    color: #242D2D;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 144%;
    text-align: left;
    margin-bottom: 0.5rem;
}

#authReviewModal.modal .wrapper-form .form-control {
    padding: 0.75rem 1rem;
    font-size: 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

#authReviewModal.modal .btn-amarillo {
    color: #000;
    background-color: #FFB500;
    font-size: 18px;
    padding: 0.5rem 2rem;
    border: 2px solid #FFB500;
   
}

/* Star rating input */
#authReviewModal .auth-star-rating-input .auth-star {
    font-size: 32px;
    cursor: pointer;
    color: #dee2e6;
    transition: color 0.15s ease;
    line-height: 1;
}

#authReviewModal .auth-star-rating-input .auth-star:hover,
#authReviewModal .auth-star-rating-input .auth-star.active {
    color: #FFB500 !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 575.98px) {
    #authLoginModal.modal .modal-dialog {
        margin: 1rem;
    }

    #authLoginModal.modal .btn-close {
        top: 10px;
        right: 10px;
    }

    #authLoginModal.modal .wrapper-form {
        padding: 1.5rem;
    }
}