/* ================= REGISTRO CARKING STYLES ================= */
/* FONDO PARA EL HEADER */
.hero-custom {
    height: 70px; /* Altura fija para el header */
    background: linear-gradient(135deg, #0b1c3d 0%, #1f3c88 100%);
    color: white;
    text-align: center;
   }


.registro-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 85vh;
    background-color: #f4f7f6; /* Fondo igual al login */
}

.auth-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(11, 28, 61, 0.1);
    max-width: 450px;
    width: 100%;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 2rem;
    color: var(--primary); /* #0b1c3d */
    font-weight: 800;
    line-height: 1.1;
}

.auth-header h1 span {
    color: var(--secondary); /* #ff3b3b */
}

.auth-header p {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* FORMULARIO */
.auth-form .form-group {
    margin-bottom: 15px;
}

.auth-form input {
    width: 100%;
    padding: 14px;
    border: 1px solid #e1e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.auth-form input:focus {
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(11, 28, 61, 0.05);
    outline: none;
}

/* BOTÓN REGISTRO */
.btn-auth {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), #1f3c88);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(11, 28, 61, 0.2);
    background: var(--secondary); /* Cambia a rojo al pasar el mouse */
}

/* FOOTER DEL FORMULARIO */
.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: var(--secondary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .registro-wrapper {
        padding: 40px 15px;
    }
    
    .auth-container {
        padding: 30px 20px;
    }

    .auth-header h1 {
        font-size: 1.7rem;
    }

        .hero-custom {
        height: 60px; /* Altura fija para el header */
    }
}