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

:root {
  /* Premium Dashboard Colors */
  --bg-color: #f7f8f9;
  --surface-color: #ffffff;
  --text-main: #111827;
  /* Darker, high-contrast black/gray */
  --text-secondary: #4b5563;
  /* Less washed-out secondary gray */
  --apple-blue: #0071e3;
  --apple-blue-hover: #0077ED;
  --apple-green: #34c759;
  --apple-red: #ff3b30;
  --border-color: #e5e7eb;

  /* Eliminar sombras chillonas y usar flat design */
  --shadow-soft: none;
  --shadow-medium: none;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 10px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-shadow: none !important;
  /* Flat UI demandada por usuario */
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  display: flex;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

/* =========================================
   LOGIN
========================================= */
.login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
}

.login-container {
  background: rgba(255, 255, 255, 0.75);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: none;
  width: 100%;
  max-width: 420px;
  text-align: center;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.login-container h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.login-container p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: inherit;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  outline: none;
  backdrop-filter: blur(10px);
}

/* Quitar flechas de los input number (Estilo Apple/Minimalista) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
  /* Firefox */
}

input:focus {
  border-color: var(--apple-blue);
  background-color: var(--surface-color);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}

button {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 24px;
  background-color: var(--apple-blue);
  color: white;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: var(--apple-blue-hover);
}

button:focus {
  outline: none;
}

/* =========================================
   DASHBOARD LAYOUT
========================================= */
.dashboard-layout {
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  padding-top: 64px;
  /* Espacio para el Navbar fijo superior */
}

/* =========================================
   PREMIUM NAVIGATION BAR 
========================================= */
.premium-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 9999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  gap: 12px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--text-main);
  transition: color 0.3s;
}

.nav-logo:hover .logo-icon {
  color: var(--apple-blue);
}

.logo-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-bold {
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: center;
}

.nav-btn {
  background: transparent;
  color: #6B7280;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  padding: 8px 16px;
  border: none;
  height: auto;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  width: auto !important;
}

.nav-btn:hover {
  color: #111827;
  background-color: #F3F4F6;
}

.nav-btn.active {
  color: #111827;
  font-weight: 600;
  background-color: #F3F4F6;
}

.nav-btn:focus {
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}

.nav-divider {
  width: 1px;
  height: 24px;
  background-color: #E5E7EB;
  margin: 0 4px;
}

.nav-role-text {
  font-size: 13px;
  font-weight: 600;
  color: #9CA3AF;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 4px;
}

.btn-logout-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--apple-blue);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 9999px;
  border: none;
  width: auto;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
}

.btn-logout-premium:hover {
  background-color: var(--apple-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 113, 227, 0.3);
}

.btn-logout-premium:active {
  transform: translateY(0);
}

.logout-icon {
  display: none;
  /* Oculto en PC por defecto */
}

.logout-text {
  display: block;
  /* Texto visible en PC */
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
  min-height: calc(100vh - 48px);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  /* Eliminamos el blur y sticky superior, ya no es necesario porque la nav global lo es */
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-top h2 {
  font-size: 24px;
}

.user-profile {
  font-size: 15px;
  font-weight: 500;
  background: var(--surface-color);
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-area {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* =========================================
   CARDS & PANELS
========================================= */
.card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: none;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

/* =========================================
   TABLES
========================================= */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: var(--surface-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 16px 20px;
  font-size: 15px;
}

th {
  background-color: #fafafa;
  color: var(--text-secondary);
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}

td {
  border-bottom: 1px solid var(--border-color);
}

tr:last-child td {
  border-bottom: none;
}

/* Inputs within tables */
td input[type="number"] {
  width: 80px;
  padding: 8px 12px;
  font-size: 15px;
  text-align: center;
}

/* =========================================
   UTILITIES
========================================= */
.flex-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.btn-small {
  padding: 10px 16px;
  font-size: 14px;
  width: auto;
}

.btn-success {
  background-color: var(--apple-green);
  width: auto;
  white-space: nowrap;
}

.btn-success:hover {
  background-color: #2db34b;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 113, 227, 0.1);
  color: var(--apple-blue);
}

/* =========================================
   MEGA TABLA (DATA GRID) SEP PREMIUM
========================================= */
.mega-table-container {
  overflow-x: auto;
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-top: 20px;
}

.mega-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  background: #fff;
}

.mega-table th,
.mega-table td {
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f9f9f9;
  padding: 12px 14px;
  text-align: center;
  vertical-align: middle;
}

.mega-table th {
  font-weight: 600;
  color: var(--text-main);
  border-right: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Campos Formativos Header - Pastel Premium */
.th-lenguajes {
  background-color: #fcecfc;
  color: #8a3f8a;
  font-size: 14px;
  font-weight: 700;
}

.th-saberes {
  background-color: #e6f6fc;
  color: #0076a3;
  font-size: 14px;
  font-weight: 700;
}

.th-etica {
  background-color: #f2fce6;
  color: #5f8f1c;
  font-size: 14px;
  font-weight: 700;
}

.th-humano {
  background-color: #fce6eb;
  color: #a82e4e;
  font-size: 14px;
  font-weight: 700;
}

.th-global {
  background-color: #f5f5f7;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
}

/* Sub-Headers (Disciplinas y Criterios) */
.th-disciplina {
  background-color: #fafafa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
}

.th-criterio {
  background-color: #ffffff;
  font-size: 11px;
  color: var(--text-secondary);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  height: 110px;
  padding: 10px 8px;
  font-weight: 500;
}

/* Celdas de Alumnos - Sticky Lado Izquierdo */
.td-name {
  text-align: left !important;
  font-weight: 500;
  position: sticky;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2;
  min-width: 250px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
  color: var(--text-main);
  border-right: 1px solid var(--border-color) !important;
}

/* Diseño de inputs "Invisible" estilo Notion/Airtable */
.mega-table input[type="number"] {
  width: 55px;
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 1.5px solid transparent;
  background: transparent;
  border-radius: 6px;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.mega-table input[type="number"]:hover {
  background: #f5f5f7;
}

.mega-table input[type="number"]:focus {
  border-color: var(--apple-blue);
  background: #f0f8ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

/* Eliminar flechas del input number para que parezca celda limpia */
.mega-table input[type="number"]::-webkit-inner-spin-button,
.mega-table input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mega-table input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Filas Zebra muy suave */
.mega-table tbody tr:nth-child(even) td:not(.td-name):not(.td-promedio):not(.td-prom-trim) {
  background-color: #fcfcfc;
}

.td-promedio {
  background-color: #f7f7f9;
  font-weight: bold;
  color: var(--text-main);
  font-size: 14px;
}

.td-prom-trim {
  background-color: #f0faff;
  font-weight: 800;
  font-size: 15px;
  color: var(--apple-blue);
}

/* =========================================
   LISTA DE ALUMNOS (V2 - EXPEDIENTES PREMIUM)
========================================= */
.student-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.student-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px) scale(1.005);
  border-color: rgba(0, 113, 227, 0.1);
}

.student-header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--surface-color);
  transition: background 0.2s ease;
}

.student-header:hover {
  background: #f4f5f7;
}

.student-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apple-blue), #5ac8fa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 113, 227, 0.2);
}

.student-info h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: -0.2px;
}

.student-info p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.student-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-icon {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  /* Make them circular on hover */
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.btn-icon:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-main);
  transform: scale(1.05);
}

.btn-icon.delete:hover {
  background: rgba(255, 59, 48, 0.1);
  color: var(--apple-red);
}

.student-expediente {
  display: none;
  padding: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  background: #fdfdfd;
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: top;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0.95);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.campo-eval-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campo-eval-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.campo-header {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.disciplina-row {
  padding: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.disciplina-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
}

.eval-5cols-container {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}

.eval-col-input {
  flex: 1 1 15%;
  min-width: 80px;
  display: flex;
  flex-direction: column;
}

.eval-col-input label,
.eval-col-final label {
  display: block;
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.eval-col-input input {
  width: 100%;
  padding: 8px 6px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.2s ease;
  background: #fbfbfc;
  height: 42px;
}

.eval-col-input input:focus,
.eval-col-input input:hover {
  border-color: var(--apple-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
  outline: none;
}

.eval-col-final {
  flex: 1 1 20%;
  min-width: 100px;
  background: #f4f9ff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 113, 227, 0.15);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.01);
  padding: 6px 4px;
}

.eval-col-final label {
  color: var(--apple-blue);
  margin-bottom: 2px;
}

.eval-col-final strong {
  font-size: 16px;
  color: var(--apple-blue);
}

/* =========================================
   RESPONSIVE & MOBILE (MEDIA QUERIES)
========================================= */

@media (max-width: 900px) {
  .nav-container {
    padding: 0 16px;
  }

  .content-area {
    padding: 24px 16px;
  }
}

@media (max-width: 768px) {
  .premium-navbar {
    height: auto;
    min-height: 64px;
  }

  /* 1. Navbar Adjustments */
  .nav-container {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 16px;
    gap: 8px;
  }

  .nav-logo {
    flex: 1;
    min-width: 150px;
  }

  .logo-text {
    font-size: 16px;
  }

  .nav-actions {
    flex-shrink: 0;
  }

  .nav-links {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
    /* Apple iPhone line safe area */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.04);
    z-index: 99990;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 24px 24px 0 0;
    /* App-like rounded top corners */
    height: auto;
    min-height: 70px;
  }

  .nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100% !important;
    padding: 10px 0 !important;
    border-radius: 0;
    font-size: 14px !important;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent !important;
    transition: all 0.2s ease;
  }

  .nav-btn.active {
    color: var(--apple-blue) !important;
    font-weight: 700;
  }

  .dashboard-layout,
  body {
    padding-bottom: 80px;
    /* Space for the bottom navbar */
  }

  .nav-divider,
  .nav-role-text {
    display: none;
  }

  /* Show nav actions (logout button) on mobile by preventing it from wrapping randomly */
  .nav-actions {
    display: flex;
    align-items: center;
  }

  /* Nuevo estilo 2026 para el boton de Logout en Móviles (Círculo de Cristal rojo) */
  .logout-text {
    display: none;
  }

  .logout-icon {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .btn-logout-premium {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background-color: rgba(255, 59, 48, 0.08) !important;
    color: #ff3b30 !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 59, 48, 0.1) !important;
  }

  .btn-logout-premium:active {
    background-color: rgba(255, 59, 48, 0.15) !important;
    transform: scale(0.95);
  }

  /* 2. Layout & Padding */
  .header-top {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    gap: 12px;
  }

  /* Fix for the user profile container alignment */
  .header-top>.user-profile>div:first-child {
    text-align: left !important;
    margin-right: 12px !important;
  }

  .content-area {
    padding: 0 16px 24px 16px;
  }

  .card {
    padding: 16px;
  }

  /* 3. Typography Adjustments */
  h2[style*="38px"],
  h2[style*="28px"],
  .header-top h2 {
    font-size: 24px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }

  div[style*="font-size:16px; font-weight:500"] {
    font-size: 14px !important;
  }

  /* 4. Section Headers */
  .card[style*="padding:0"]>div:first-child {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
  }

  .card[style*="padding:0"]>div:first-child>div:last-child {
    width: 100%;
  }

  .card[style*="padding:0"]>div:first-child button {
    width: 100%;
    justify-content: center;
    padding: 12px !important;
  }

  /* 5. Grids inside Dashboard */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* 6. Modals */
  div[style*="width:400px"],
  div[style*="width: 400px"],
  div[style*="width:500px"],
  div[style*="width: 500px"],
  div[style*="width:600px"] {
    width: 95% !important;
    padding: 20px !important;
  }

  /* 7. Student Cards */
  .student-header {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .student-header>div:first-child {
    gap: 10px !important;
    flex: 1;
    min-width: 200px;
  }

  .student-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .student-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .student-info p {
    font-size: 12px;
  }

  .student-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 4px;
  }

  .student-expediente>div:first-child {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 20px;
    height: 20px;
    display: none;
    /* Ocultar icono en movil pequeño para dar espacio al texto */
  }

  /* Input fields full width */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  select {
    font-size: 16px;
  }
}