: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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Narrow', sans-serif;
    background: linear-gradient(135deg, var(--coral-oscuro) 0%, var(--coral-medio) 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); }
}

/* --- TARJETA DE LOGIN --- */
.login-card {
    background: var(--blanco);
    width: 92%;
    max-width: 350px;
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    position: relative;
    z-index: 10;
    text-align: center;
}

.logo-container {
    height: 70px;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-height: 100%;
    object-fit: contain;
}

/* --- FORMULARIO --- */
.form-group {
    text-align: left;
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--texto-oscuro);
    margin-bottom: 8px;
}

.form-group label span { color: var(--coral-oscuro); }

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
    position: relative;
    align-items: center;
    outline: none !important;
}







.extra-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

/* El link de olvidaste contraseña */
#btnOlvidaste {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--morado-intermedio); /* O el color que prefieras para que no resalte tanto */
    margin-bottom: 5px;
}

/* 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;
    
    /* Usamos tus variables */
    border: 1px solid var(--coral-claro); 
    color: var(--coral-claro) !important;
    
    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;
}






.input-wrapper:focus-within {
    border-color: var(--coral-oscuro);
}

.prefix {
    background: #f4f4f4;
    padding: 12px 12px;
    font-size: 14px;
    color: #888;
    border-right: 1.5px solid #e0e0e0;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--texto-oscuro);
}

.btn-ingresar {
    width: 100%;
    background: var(--coral-goshop);
    color: var(--blanco);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 5px;
}

.btn-ingresar:hover {
    background: var(--coral-medio);
    transform: translateY(-2px);
}

.extra-links {
    margin-top: 10px;
}

.extra-links a {
    font-size: 15px;
    color: var(--coral-oscuro);
    text-decoration: none;
    font-weight: 600;
}






