:root {
    --coral-oscuro: #6532f1; 
    --coral-medio: #ff8787;
    --texto-oscuro: #2d3436;
    --blanco: #ffffff;
    --amarillo: #ffd35c;
    --amarillo-hover: #ffc107;
    --morado-goshop: #480CA8;
    --morado-claro:#f9f5ff;
    --coral-goshop: #FF4D6D;
    --coral-claro:#fc9dae;
    --morado-intermedio: #544ea1;
}
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Narrow', sans-serif;
    background: linear-gradient(135deg, var(--coral-medio) 0%, var(--coral-oscuro) 100%);
    overflow: hidden;
    position: relative;
}

        /* --- FONDO ANIMADO --- */
.fondo-decorativo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.franja {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(-15deg) skewX(-10deg);
    animation: flotar 12s ease-in-out infinite alternate;
}

.f1 { width: 35%; height: 150%; top: -20%; right: 5%; }
.f2 { width: 15%; height: 150%; top: -10%; right: 40%; background: rgba(255, 255, 255, 0.04); animation-delay: -3s; }

.circulo {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.714) 0%, transparent 75%);
    
    animation: moverCirculo 15s ease-in-out infinite alternate;
}

.c1 { width: 400px; height: 400px; top: -50px; left: -100px; }
.c2 { width: 200px; height: 200px; bottom: 50px; right: -20px; animation-delay: -5s; }

@keyframes flotar {
    from { transform: translate(0, 0) rotate(-15deg) skewX(-10deg); }
    to { transform: translate(15px, 25px) rotate(-13deg) skewX(-8deg); }
}

@keyframes moverCirculo {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.1) translate(-20px, 30px); }
}

.recovery-container {
    min-height: 100vh; /* Ocupa el 100% del alto de la pantalla */
    width: 100%;       /* Ocupa el 100% del ancho de la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;        /* Para que esté por encima del fondo decorativo */
}
/* Ajuste de la tarjeta: más angosta y centrada */
.recovery-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 350px ;
    height: 450px;
   
    text-align: center;
    z-index: 10;
}

.recovery-card h2 {
    font-size: 1.6rem;
    color: var(--morado-goshop);
    margin-bottom: 10px;
    font-family: 'Archivo Narrow', sans-serif;
}

.recovery-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

/* Estilo del input */
.input-group {
    text-align: left;
   
}

.input-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-sizing: border-box; /* Para que el padding no lo ensanche */
    font-family: 'Archivo Narrow', sans-serif;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--texto-oscuro);
    margin-bottom: 8px;
    font-family: 'Archivo Narrow', sans-serif;
}

/* Botón centrado y del mismo ancho que el input si quisieras, 
   o mantenemos tu estilo de botón corto pero centrado */
.btn-enviar {
    width: 100%; /* Lo puse al 100% para que se vea más moderno y prolijo */
    
    background-color: var(--coral-goshop);
    color: white;
    border: none;
    height: 45px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: 'Archivo Narrow', sans-serif;
}

.btn-enviar:hover {
    background-color: var(--coral-claro);
    transform: scale(1.02);
}

.back-link {
    margin-top: 1.5rem;
}

.back-link a {
    color: var(--morado-intermedio);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Archivo Narrow', sans-serif;
}     

/* El botón Volver con tu color coral-claro */
.btn-volver-minimal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background-color: transparent;
    margin-top: 20px;
    /* Usamos tus variables */
    border: 1px solid var(--coral-claro); 
    color: var(--coral-claro) !important;
    height: 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-volver-minimal:hover {
    background-color: #f8f9fa;
    border-color: var(--coral-goshop);
    color: var(--coral-goshop) !important;
    transform: translateY(-1px);
}

.btn-volver-minimal span {
    font-size: 0.75rem;
}