/* main.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0f172a;
  min-height: 100vh;
  overflow-x: hidden;
  color: white;
  position: relative;
}

/* FONDOS */
.background-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
}

.blur-1 {
  width: 400px;
  height: 400px;
  background: #2563eb;
  top: -100px;
  left: -100px;
}

.blur-2 {
  width: 350px;
  height: 350px;
  background: #06b6d4;
  bottom: -100px;
  right: -100px;
}

.container {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 100%;
  max-width: 1000px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
  font-size: 13px;
  margin-bottom: 14px;
}

.header h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  color: #94a3b8;
}

.logo-box {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.full {
  grid-column: span 2;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Fix para evitar desbordes dentro de grid */
  min-width: 0;
}

.input-group label {
  font-size: 14px;
  color: #cbd5e1;
}

.input-group input,
.input-group select {
  width: 100%;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 0 18px;
  color: white;
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
  /* Fix mobile */
  min-width: 0;
  max-width: 100%;
}

.input-group input:focus,
.input-group select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.input-group input::-moz-placeholder {
  color: #64748b;
}

.input-group input::placeholder {
  color: #64748b;
}

/* FIX INPUT DATE */
input[type=date] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}

input[type=date]::-webkit-date-and-time-value {
  text-align: left;
  min-height: 1.2em;
}

input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 10px;
}

button {
  border: none;
  height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.primary {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: white;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .container {
    padding: 24px 14px;
    align-items: flex-start;
  }
  .card {
    padding: 24px;
    border-radius: 22px;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .header h1 {
    font-size: 30px;
    line-height: 1.15;
  }
  .subtitle {
    font-size: 14px;
    line-height: 1.5;
  }
  .logo-box {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    font-size: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .full {
    grid-column: span 1;
  }
  .input-group input,
  .input-group select {
    height: 54px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 16px;
  }
  .actions {
    flex-direction: column;
  }
  button {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .card {
    padding: 20px;
  }
  .header h1 {
    font-size: 26px;
  }
  .badge {
    font-size: 12px;
  }
  .input-group input,
  .input-group select {
    font-size: 13px;
    padding: 0 12px;
  }
}/*# sourceMappingURL=main.css.map */