* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'Montserrat', sans-serif;
}

body {

    font-family: 'Montserrat', sans-serif;

    background-image:
        linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .45)),
        url("https://unincca.edu.co/wp-content/uploads/2026/06/sidebarback.webp");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;

    color: white;

}


/* =========================
LOGIN
========================= */

.container {

    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.logo-box {

    text-align: center;
    margin-bottom: 30px;

}

.logo-box h1 {

    font-size: 60px;
    color: #d4af37;

}

.logo-box p {

    opacity: 0.8;
    margin-top: 10px;

}

.auth-box {

    background: white;

    padding: 40px;

    border-radius: 20px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    width: 350px;

    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);

}

.auth-box input {

    padding: 15px;

    border: none;

    background: #f2f2f2;

    border-radius: 10px;

    font-size: 16px;

}

.auth-box button {

    padding: 15px;

    border: none;

    background: #CC30D4;
    color: #fff;

    border-radius: 10px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}

.auth-box button:hover {

    transform: scale(1.03);

}


/* =========================
LOADER
========================= */

.loader-container {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.7);

    display: none;

    justify-content: center;
    align-items: center;
    flex-direction: column;

    z-index: 9999;

}

.loader {

    width: 70px;
    height: 70px;

    border-radius: 50%;

    border: 8px solid rgba(255, 255, 255, 0.2);

    border-top: 8px solid #d4af37;

    animation: spin 1s linear infinite;

}

.loader-container p {

    margin-top: 20px;

    font-size: 18px;

}

@keyframes spin {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}


/* =========================
DASHBOARD
========================= */

.dashboard-container {

    display: flex;

    width: 100%;

    min-height: 100vh;

    align-items: stretch;

    animation: aparecerDashboard 1s ease;

}

@keyframes aparecerDashboard {

    from {

        opacity: 0;
        transform:
            scale(.95);

    }

    to {

        opacity: 1;
        transform:
            scale(1);

    }

}


/* SIDEBAR */

.sidebar {

    width: 320px;

    min-height: 100vh;

    flex-shrink: 0;

    padding: 30px;

    border-right: 2px solid #d4af37;

    display: flex;

    flex-direction: column;

    position: relative;

    overflow: hidden;

    background-image:
        url("https://unincca.edu.co/wp-content/uploads/2026/06/sidebarback.webp");

    background-repeat:
        repeat-y;

    background-position:
        center top;

    background-size:
        contain;

}

.sidebar::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        rgba(5, 17, 43, 0.65);

    z-index: 0;

}

.sidebar>* {

    position: relative;

    z-index: 1;

}

.logo-title {

    font-size: 40px;

    color: #d4af37;

}

.subtitle {

    margin-top: 10px;

    opacity: 0.7;

}

.profile-box {

    margin-top: 40px;

    text-align: center;

}

.avatar {

    width: 100px;
    height: 100px;

    margin: auto;

    border-radius: 50%;

    background: #d4af37;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 40px;

    color: black;

}

.profile-box h3 {

    margin-top: 20px;

}

.profile-box p {

    margin-top: 10px;

    opacity: 0.7;

    word-break: break-word;

}


/* PROGRESO */

.progress-box {

    margin-top: 40px;

}

.progress-bar {

    width: 100%;
    height: 20px;

    background: rgba(255, 255, 255, 0.08);

    border: 2px solid #CC30D4;

    border-radius: 30px;

    overflow: hidden;

    margin-top: 10px;

    box-shadow:
        0 0 10px rgba(179, 71, 255, .4);

}

.progress-fill {

    width: 0%;
    height: 100%;

    background: #CC30D4;

    transition: 0.5s;

}

#progressText {

    margin-top: 10px;

}


/* BOTON */

.logout-btn {

    padding: 15px;

    border: none;

    background: #CC30D4;

    border-radius: 10px;

    font-weight: bold;

    cursor: pointer;

}


/* MAIN */

.main-content {

    flex: 1;

    min-height: 100vh;

    padding: 40px;

}

.album-header h2 {

    font-size: 40px;

}

.album-header p {

    margin-top: 10px;

    opacity: 0.7;

}


/* ALBUM */

.album-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(160px, 1fr));

    gap: 15px;

    justify-items: center;

}

.sticker-slot {

    width: 180px;

    aspect-ratio: 917 / 1145;

    border-radius: 20px;

    border: 3px dashed #d4af37;

    background: linear-gradient(145deg, #10244d, #09152f);

    position: relative;

    overflow: hidden;

    transition: 0.3s;

    cursor: pointer;

    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);

}

.sticker-slot:hover {

    transform: translateY(-5px) scale(1.03);

}

.sticker-slot span {

    position: absolute;

    bottom: 15px;
    right: 15px;

    font-size: 22px;
    font-weight: bold;

    color: #d4af37;

}


/* SUBIDA */

.upload-box {

    margin-top: 50px;

    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.05));

    padding: 40px;

    border-radius: 25px;

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3);

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;

    position: relative;

    overflow: hidden;

}

.upload-box::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    background: rgba(212, 175, 55, 0.15);

    border-radius: 50%;

    top: -150px;
    right: -100px;

}

.upload-box h3 {

    font-size: 32px;

    margin-bottom: 25px;

    color: #d4af37;

    position: relative;
    z-index: 2;

}

.upload-box input {

    margin-top: 20px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.08);

    border: 2px dashed #d4af37;

    border-radius: 20px;

    width: 100%;

    color: white;

    font-size: 16px;

    cursor: pointer;

    position: relative;
    z-index: 2;

}

.upload-box button {

    margin-top: 30px;

    padding: 18px 35px;

    background: #d4af37;

    border: none;

    border-radius: 15px;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

    position: relative;
    z-index: 2;

}

.upload-box button:hover {

    transform: translateY(-3px) scale(1.03);

    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);

}

#mensaje {

    margin-top: 25px;

    font-size: 18px;
    font-weight: bold;

    position: relative;
    z-index: 2;

}

.upload-box h3 {

    margin-bottom: 20px;

}

.upload-box input {

    margin-top: 10px;

}

.upload-box button {

    margin-top: 20px;

    padding: 15px 25px;

    border: none;

    background: #d4af37;

    border-radius: 10px;

    font-weight: bold;

    cursor: pointer;

}

#mensaje {

    margin-top: 20px;

}


/* MODAL */

.modal-final {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Agregar estas: */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content-final {
    background: white;
    color: black;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    /* Agregar estas: */
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
    /* Evitar que quede cortado en móvil: */
    margin: auto;
    position: relative;
}

.modal-content-final h1 {

    font-size: 70px;

}

.modal-content-final h2 {

    margin-top: 20px;

}

.modal-content-final p {

    margin-top: 20px;

}

.modal-content-final button {

    margin-top: 30px;

    padding: 15px 30px;

    border: none;

    background: #EA7D00;

    border-radius: 10px;

    font-weight: bold;

    cursor: pointer;

}


/* RESPONSIVE */

@media(max-width:1200px) {

    .dashboard-container {

        flex-direction: column;

    }

    .sidebar {

        width: 100%;

        min-height: auto;

        border-right: none;

        border-bottom: 2px solid #d4af37;

    }

}

@media(max-width:500px) {

    .album-grid {

        grid-template-columns: repeat(1, 180px);

    }

    .main-content {

        padding: 20px;

    }

}

/* =========================
AVATARES
========================= */

.avatar-selector {

    display: flex;
    justify-content: center;
    gap: 15px;

    margin-top: 20px;

}

.avatar-option {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    cursor: pointer;

    border: 4px solid transparent;

    transition: 0.3s;

    object-fit: cover;

    background: white;

}

.avatar-option:hover {

    transform: scale(1.08);

}

.active-avatar {

    border: 4px solid #d4af37;

    box-shadow: 0 0 20px #d4af37;

}

/* =========================
IMAGEN LÁMINA
========================= */

.album-image {

    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 16px;

    display: block;

    animation: aparecerFicha 0.5s ease;

}

@keyframes aparecerFicha {

    0% {

        transform: scale(0.7);
        opacity: 0;

    }

    100% {

        transform: scale(1);
        opacity: 1;

    }

}

/* =========================
PRECARGA ÁLBUM
========================= */

.sticker-slot {

    background:

        linear-gradient(145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.02));

    transition: 0.3s;

    overflow: hidden;

    position: relative;

}

.sticker-slot::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);

    transform: translateX(-100%);

    animation: loadingAlbum 1.2s infinite;

}

.sticker-slot img {

    position: relative;
    z-index: 2;

}

@keyframes loadingAlbum {

    100% {

        transform: translateX(100%);

    }

}

/* ======================================
FONDO COLLAGE ÁLBUM
====================================== */

.album-background {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

}

/* IMAGEN COLLAGE */

.album-background::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(rgba(4, 10, 30, 0),
            rgba(4, 10, 30, 0)),

        url("https://unincca.edu.co/wp-content/uploads/2026/06/Fondo-album.webp");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    filter: blur(1px);

    transform: scale(1.03);

    z-index: 0;

}

/* CONTENIDO ENCIMA */

.album-background>* {

    position: relative;

    z-index: 2;

}

/* HEADER */

.album-header {

    background:
        rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(12px);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    padding: 25px;

    border-radius: 24px;

    margin-bottom: 35px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35);

}

/* TÍTULO */

.album-header h2 {

    text-align: center;

    font-size: 38px;

    font-weight: 800;

    letter-spacing: 2px;

    color: white;

    margin-bottom: 10px;

    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.2);

}

/* TEXTO */

.album-header p {

    font-size: 18px;

    color: rgba(255, 255, 255, 0.75);

    text-align: center;

}

/* GRID */

.album-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 180px);

    justify-content: center;

    gap: 20px;

    justify-content: center;

    margin: 0 auto;

}

/* #1 */
.sticker-slot:nth-child(1) {

    grid-column: 1;

    grid-row: 1;

    background:
        rgba(255, 193, 7, .35);

    border:
        2px solid rgba(255, 193, 7, .8);

}

/* #11 */
.sticker-slot:nth-child(2) {

    grid-column: 3;

    grid-row: 1;

    background:
        rgba(255, 193, 7, .35);

    border:
        2px solid rgba(255, 193, 7, .8);

}

.sticker-slot:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    background:
        rgba(0, 188, 212, .35);

    border:
        2px solid rgba(0, 188, 212, .8);
}

.sticker-slot:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    background:
        rgba(0, 188, 212, .35);

    border:
        2px solid rgba(0, 188, 212, .8);
}

.sticker-slot:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
    background:
        rgba(0, 188, 212, .35);

    border:
        2px solid rgba(0, 188, 212, .8);
}

.sticker-slot:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
    background:
        rgba(233, 30, 99, .35);

    border:
        2px solid rgba(233, 30, 99, .8);
}

.sticker-slot:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
    background:
        rgba(233, 30, 99, .35);

    border:
        2px solid rgba(233, 30, 99, .8);
}

.sticker-slot:nth-child(8) {
    grid-column: 3;
    grid-row: 3;
    background:
        rgba(233, 30, 99, .35);

    border:
        2px solid rgba(233, 30, 99, .8);
}

.sticker-slot:nth-child(9) {
    grid-column: 1;
    grid-row: 4;
    background:
        rgba(76, 175, 80, .35);

    border:
        2px solid rgba(76, 175, 80, .8);
}

.sticker-slot:nth-child(10) {
    grid-column: 2;
    grid-row: 4;
    background:
        rgba(76, 175, 80, .35);

    border:
        2px solid rgba(76, 175, 80, .8);
}

.sticker-slot:nth-child(11) {
    grid-column: 3;
    grid-row: 4;
    background:
        rgba(76, 175, 80, .35);

    border:
        2px solid rgba(76, 175, 80, .8);
}

/* FICHAS */

.sticker-slot {

    width: 180px;

    aspect-ratio: 917 / 1145;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        2px dashed rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(12px);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    transition: 0.35s;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25);

}

/* HOVER */

.sticker-slot:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 40px rgba(0, 255, 136, 0.18);

    border:
        2px solid rgba(0, 255, 136, 0.35);

}

/* TEXTO SLOT */

.sticker-slot span {

    font-size: 28px;

    font-weight: 800;

    color:
        rgba(255, 255, 255, 0.25);

}

.numero-lamina {

    position: absolute;

    top: 15px;
    right: 15px;

    font-size: 28px;
    font-weight: 800;

    color: rgba(255, 255, 255, .25);

    z-index: 2;
}

.cargar-lamina {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 20px;
    font-weight: 800;

    text-align: center;

    color: rgba(255, 255, 255, .25);

    text-transform: uppercase;

    letter-spacing: 1px;

    pointer-events: none;

    z-index: 2;
}

/* IMAGEN */

.album-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 20px;

}

/* UPLOAD BOX */

.upload-box {

    background:
        rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(14px);

    padding: 35px;

    border-radius: 28px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35);

}

/* TÍTULO */

.upload-box h3 {

    font-size: 28px;

    color: white;

    margin-bottom: 20px;

}

/* INPUT */

.upload-box input {

    width: 100%;

    padding: 15px;

    border-radius: 14px;

    border: none;

    background:
        rgba(255, 255, 255, 0.08);

    color: white;

    margin-bottom: 20px;

}

/* BOTÓN */

.upload-box button {

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 16px;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;

    background:
        linear-gradient(135deg,
            #00c853,
            #00e676);

    color: #04101f;

    transition: 0.3s;

}

/* HOVER */

.upload-box button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(0, 255, 136, 0.4);

}

.logo-image {

    width: 100%;

    max-width: 520px;

    height: auto;

    display: block;

    margin: 0 auto;

    object-fit: contain;

}

/* TRANSICION ALBUM */

.album-transition {

    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    background: #041a3b;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 100000;

    opacity: 0;
    visibility: hidden;

    transition: opacity .4s ease;

}

.album-transition.active {

    opacity: 1;
    visibility: visible;

}

.album-book {

    width: 350px;
    height: 450px;

    perspective: 2000px;

}

.album-cover {

    width: 100%;
    height: 100%;

    background: linear-gradient(135deg,
            #003b8e,
            #001d46);

    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .5);

    transform-origin: left center;

}

.album-cover img {

    width: 80%;
    height: auto;

}

.album-transition.active .album-cover {

    animation: abrirAlbum 1.8s forwards;

}

@keyframes abrirAlbum {

    0% {

        transform:
            rotateY(0deg) scale(1);

    }

    100% {

        transform:
            rotateY(-180deg) scale(1.4);

        opacity: 0;

    }

}

.profile-box {
    margin-top: 40px;
}

.progress-box {
    margin-top: 40px;
}

.logout-btn {
    margin-top: auto;
}

.avatar-principal {

    width: 120px;
    height: 120px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #d4af37;

    display: block;

    margin: auto;

}

.change-avatar-btn {

    margin-top: 15px;

    padding: 10px 15px;

    border: none;

    border-radius: 10px;

    background: #EA7D00;

    font-weight: bold;

    cursor: pointer;

}

.avatar-selector {

    margin-top: 15px;

    display: flex;

    justify-content: center;

    gap: 15px;

}

.modal-content-final button {

    display: block;

    width: 100%;

    margin-top: 15px;

}

/* =========================
LOGIN MÓVIL
========================= */

@media (max-width: 768px) {

    .container {

        padding: 20px;

    }

    .logo-image {

        max-width: 580px;

        width: 90%;

        margin-bottom: 15px;

    }

    .auth-box {

        width: 100%;

        max-width: 350px;

        padding: 25px;

    }

}

@media (max-width: 480px) {

    .logo-image {

        max-width: 580px;

    }

    .auth-box {

        padding: 20px;

        border-radius: 15px;

    }

    .auth-box input,
    .auth-box button {

        font-size: 15px;

        padding: 14px;

    }

}

.login-logo {

    text-align: center;

    margin-bottom: 30px;

}

/* =========================
TABLET
========================= */

@media (max-width: 1024px) {

    .album-grid {

        grid-template-columns:
            repeat(2, 180px);

        justify-content: center;

    }

}

/* =========================
MOVIL
========================= */

@media (max-width: 768px) {

    .album-grid {

        grid-template-columns:
            180px;

        justify-content: center;

        gap: 15px;

    }

}



#avatarSelector {

    position: relative;

    z-index: 9999;

}

.profile-avatar-container {

    position: relative;

    z-index: 100;

}

.album-header {
    position: relative;
    text-align: center;
}

.help-btn {

    position: absolute;
    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: none;

    background: #ffffff;

    color: #05112b;

    font-weight: bold;
    font-size: 22px;

    cursor: pointer;
}

.profile-avatar-container {
    text-align: center;
}

#avatarSelector {
    margin-top: 15px;
    display: none;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===================================
MÓVIL - UNA SOLA LÁMINA POR FILA
=================================== */

@media screen and (max-width: 768px) {

    .album-grid {

        display: flex !important;
        flex-direction: column !important;

        align-items: center;

        gap: 25px;

        width: 100%;

    }

    .sticker-slot {

        width: min(90vw, 320px) !important;
        max-width: 320px !important;

        aspect-ratio: 917 / 1145;
    }

    /* Elimina posiciones forzadas */

    .sticker-slot:nth-child(1),
    .sticker-slot:nth-child(2),
    .sticker-slot:nth-child(3),
    .sticker-slot:nth-child(4),
    .sticker-slot:nth-child(5),
    .sticker-slot:nth-child(6),
    .sticker-slot:nth-child(7),
    .sticker-slot:nth-child(8),
    .sticker-slot:nth-child(9),
    .sticker-slot:nth-child(10),
    .sticker-slot:nth-child(11) {

        grid-column: auto !important;
        grid-row: auto !important;

    }

}

.modal-imagen{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.92);

    z-index:999999;

    justify-content:center;
    align-items:center;

    padding:20px;
}

.modal-imagen img{

    max-width:95%;
    max-height:95%;

    border-radius:20px;

    box-shadow:0 0 40px rgba(255,255,255,.2);
}

.cerrar-imagen{

    position:absolute;

    top:20px;
    right:30px;

    font-size:50px;

    color:white;

    cursor:pointer;

    z-index:2;
}

.barra-logos{
    width:100%;
    background:#081f63; /* azul institucional */
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
    margin-top:30px;
    flex-wrap:wrap;
    border-radius:22px 22px 0 0;
}

.barra-logos img{
    width:50%;
    display:block;
    
}

.btn-recuperar {
            background: transparent !important;
            color: #CC30D4 !important;
            border: 2px solid #CC30D4 !important;
            font-size: 14px !important;
            padding: 10px !important;
            font-weight: 600;
        }
        .btn-recuperar:hover {
            background: rgba(204,48,212,0.08) !important;
            transform: scale(1.02);
        }

        /* Modal recuperar — fondo oscuro cubre toda la pantalla */
        #modalRecuperar {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.82);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            padding: 20px;
        }
        .recuperar-box {
            background: #0d1f42;
            border: 1px solid rgba(204,48,212,0.4);
            border-radius: 20px;
            padding: 40px 35px;
            width: 100%;
            max-width: 400px;
            text-align: center;
            color: white;
            position: relative;
        }
        .recuperar-box h2 {
            font-size: 22px;
            margin-bottom: 8px;
            color: #CC30D4;
        }
        .recuperar-box p {
            font-size: 13px;
            opacity: 0.7;
            margin-bottom: 20px;
        }
        .recuperar-box input {
            width: 100%;
            padding: 13px 15px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.07);
            color: white;
            font-size: 15px;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 12px;
        }
        .recuperar-box input::placeholder { color: rgba(255,255,255,0.4); }
        .recuperar-box input:focus { outline: none; border-color: #CC30D4; }
        #mensajeRecuperar {
            font-size: 13px;
            min-height: 18px;
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 0;
            transition: padding 0.2s;
        }
        .btn-enviar-recuperar {
            width: 100%;
            padding: 13px;
            background: #CC30D4;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            transition: 0.2s;
            margin-bottom: 8px;
        }
        .btn-enviar-recuperar:hover { opacity: 0.88; }
        .btn-enviar-recuperar:disabled { opacity: 0.5; cursor: not-allowed; }
        .btn-cancelar-recuperar {
            width: 100%;
            padding: 11px;
            background: transparent;
            color: rgba(255,255,255,0.6);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            font-size: 13px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            transition: 0.2s;
        }
        .btn-cancelar-recuperar:hover { border-color: rgba(255,255,255,0.5); color: white; }
        /* X para cerrar */
        .recuperar-cerrar-x {
            position: absolute;
            top: 14px; right: 18px;
            font-size: 24px;
            color: rgba(255,255,255,0.4);
            cursor: pointer;
            line-height: 1;
            transition: color 0.2s;
        }
        .recuperar-cerrar-x:hover { color: white; }