



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

.index-fondo {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1a5632 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.index-overlay {
    width: 100%;
    max-width: 580px;
}

.index-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.index-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f0c040);
    color: #1a1a1a;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 3px;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.index-titulo {
    font-weight: 900;
    font-size: 2rem;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.index-descripcion {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.index-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #1a5632);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.index-tienda-actual {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.index-link-tienda {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a5632;
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid #1a5632;
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 0.5rem;
}

.index-link-tienda:hover {
    background: #1a5632;
    color: #fff;
}

.index-acceso-texto {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.index-form {
    max-width: 350px;
    margin: 0 auto;
}

.index-input-grupo {
    position: relative;
    margin-bottom: 0.8rem;
}

.index-input-icono {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
}

.index-input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    outline: none;
}

.index-input:focus {
    border-color: #1a5632;
}

.index-boton {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1a5632, #2d7a4a);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.index-boton:hover {
    background: linear-gradient(135deg, #15472a, #1a5632);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 86, 50, 0.3);
}