/* EXTENSION DE DISEÑO COMPONENTES DE CREACION */
.bar-content-crear {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crear-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.crear-layout {
    margin-top: 24px;
    max-width: 550px; /* Formulario bien centrado y compacto */
}

/* TARJETA DEL FORMULARIO */
.form-card-modern {
    background: var(--bg-surface);
    border: 1px solid var(--border-flat);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-intro {
    margin-bottom: 28px;
}
.form-intro h2 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.form-intro p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* INPUTS MODERNOS */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modern-form label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-modern {
    background: var(--bg-deep);
    border: 1px solid var(--border-flat);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-modern:focus {
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.15);
}
.input-modern::placeholder {
    color: #4b5563;
}

/* Selector nativo estilizado para modo oscuro */
.select-modern {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* CAJA DE GEOLOCALIZACIÓN */
.geo-box-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(6, 182, 212, 0.03);
    border: 1px dashed rgba(6, 182, 212, 0.25);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-top: 6px;
}
.geo-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.geo-icon {
    font-size: 1.2rem;
}
.geo-info div {
    display: flex;
    flex-direction: column;
}
.geo-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
}
.geo-coordinates {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    font-weight: 600;
}
.btn-geo-refresh {
    background: var(--bg-surface-glow);
    border: 1px solid var(--border-flat);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-geo-refresh:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--accent-cyan);
}

/* BOTON DE REGISTRO */
.btn-submit-gradient {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-neon));
    color: white;
    border: none;
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* Responsive */
@media (max-width: 480px) {
    .form-card-modern { padding: 20px; }
    .form-row-modern { grid-template-columns: 1fr; gap: 20px; }
    .geo-box-modern { flex-direction: column; gap: 12px; align-items: flex-start; }
    .btn-geo-refresh { width: 100%; text-align: center; }
}