
/*--------------------------------------------------------*/
/*cOMIENZO DE LOS ESTILOS DEL FONDO CON LAS ANIMACIONES-- */
/*--------------------------------------------------------*/
: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;
}

html, body {
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

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); }
}

/*--------------------------------------------------------*/
/*FIN DE LOS ESTILOS DEL FONDO CON LAS ANIMACIONES------- */
/*--------------------------------------------------------*/




/*--------------------------------------------------------*/
/*COMIENZO DE LA TARJETA PARA REGISTRARSE---------------- */
/*--------------------------------------------------------*/
.login-card {
    margin-top: 50px;
    background: var(--blanco);
    width: 92%;
    max-width: 1200px;
    padding: 20px 20px;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    position: relative;
    z-index: 10;
    text-align: center;
    overflow: visible !important;
    margin-bottom: 60px !important;
}

.logo-container {
    height: 120px;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------*/
/*COMIENZO DE LOS ESTILOS DEL FORMULARIO----------------- */
/*--------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&display=swap');

/* Forzamos a que TODOS los inputs del formulario vayan uno abajo del otro al 100% */
#regForm input[type="text"],
#regForm input[type="email"],
#regForm input[type="password"],
#regForm input[type="tel"],
#regForm select {
    width: 100%;
    display: block; /* Rompe la línea y obliga a bajar al siguiente */
    padding: 12px 14px;
    margin-bottom: 16px; /* Separación vertical constante entre campos */
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    color: #1e293b;
    background-color: #ffffff;
    box-sizing: border-box; /* Evita que el padding deforme el ancho total */
}

/* Desarmamos el flex de Nombre y Apellido para que también caigan uno abajo del otro */
.input-group {
    display: block; 
    width: 100%;
}

/* Estilo para cuando hacen clic en un campo (Focus) */
#regForm input:focus,
#regForm select:focus {
    outline: none;
    border-color: #1e293b;
}

/* Títulos principales del formulario */
#regForm h2 {
    color: #1e293b;
    font-size: 26px;
    text-align: center;
    margin: 0 0 6px 0;
}

#regForm h2.titulo{
    color: var(--morado-goshop);
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 35px;
}
#regForm h2.highlight {
    color: var(--morado-intermedio);
    font-size: 25px;
    margin-bottom: 30px;
}

/* Títulos de las secciones internas */
.form-section {
    margin-bottom: 35px;
}
.form-section h3 {
    color: #475569;
    font-size: 17px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 6px;
    margin-bottom: 16px;
}

/* Texto de ayuda debajo del input de la tienda */
.form-section label {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin: -10px 0 8px 2px;
}

/* Caja de previsualización del link */
.slug-preview {
    background-color: #f8fafc;
    border: 1px dashed #cbd5e1;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 15px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 16px;
    word-break: break-all;
}
#slugText {
    color: var(--coral-goshop);
    font-weight: 700;
}

.info-text {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin-top: 4px;
}

/* Botón inferior de acción */
#submitBtn {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
}

/* Enlaces del pie */
.extra-links {
    margin-top: 20px;
    text-align: center;
}
.btn-volver-minimal {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#regForm label {
    display: block;            /* Obliga al label a ocupar toda la línea arriba del input */
    text-align: left;          /* Lo alinea firmemente a la izquierda */
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 15px;
    font-weight: 600;          /* Un toque de grosor para que se distinga bien */
    color: var(--morado-goshop);            /* Gris oscuro corporativo, no tan duro como el negro puro */
    margin-bottom: 6px;        /* Separación justa con el input que tiene abajo */
    margin-top: 10px;          /* Despegue con el campo anterior */
    padding-left: 2px;         /* Pequeño ajuste para que calce perfecto con el borde del input */
}

/* Si usás labels especiales como el del link de la tienda, podés darles un tono más suave */
#regForm .form-section label {
    color: var(--morado-goshop);            /* Un gris un cachito más claro para textos informativos */
    font-size: 15px;
    font-weight: 400;          /* Más liviana para que no compita con los títulos */
}

/* Cuando el usuario hace clic (focus) en cualquier campo del formulario */
#regForm input:focus,
#regForm select:focus {
    outline: none; /* Volamos el recuadro negro por defecto del navegador */
    
    /* Mantenemos el mismo color de borde gris para que no cambie bruscamente */
    border-color: #cbd5e1; 
    
    /* Agregamos el efecto de sombra suave (difuminada) alrededor del input */
    /* Sintaxis: x-offset y-offset difuminado expansión color */
    box-shadow: 0 0 8px rgba(102, 54, 245, 0.289);
    
    /* Opcional: si preferís que la sombra tenga un tono más corporativo como el coral de GoShop: */
    /* box-shadow: 0 0 8px rgba(224, 110, 85, 0.15); */
}
/*--------------------------------------------------------*/
/*-----FIN DE LOS ESTILOS DEL FORMULARIO----------------- */
/*--------------------------------------------------------*/


/*--------------------------------------------------------*/
/*-----FIN DE LA TARJETA PARA REGISTRARSE---------------- */
/*--------------------------------------------------------*/
















/*----------------------------------*/
/*LOS ENLACES PARA VOLVER ATRAS---- */
/*----------------------------------*/
.extra-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.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;
}

/*----------------------------------------*/
/* FIN DE LOS ENLACES PARA VOLVER ATRAS-- */
/*----------------------------------------*/











