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

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top left, rgba(201, 89, 221, 0.1333333333), transparent 35%), radial-gradient(circle at bottom right, rgba(8, 148, 255, 0.1333333333), transparent 35%), #f6f8fc;
}

.app {
  width: 100%;
  max-width: 1000px;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

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

.header h1 {
  font-size: 2rem;
  font-weight: 700;
}

.header p {
  color: #777;
  margin-top: 5px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.results-header h3 {
  font-size: 1.3rem;
  color: #333;
}

#contador {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0894ff, #c959dd);
  color: white;
  text-align: center;
}

.badge {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0894ff, #c959dd);
  color: white;
  font-weight: 600;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group label {
  font-weight: 600;
  color: #444;
}

.input-group input {
  height: 55px;
  border: none;
  outline: none;
  border-radius: 16px;
  background: #f3f5fa;
  padding: 0 20px;
  font-size: 1rem;
  transition: 0.2s;
}

.input-group input:focus {
  box-shadow: 0 0 0 3px rgba(8, 148, 255, 0.2);
}

.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.quick-buttons button {
  border: none;
  background: white;
  border: 1px solid #e8ebf2;
  height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s;
}

.quick-buttons button:hover {
  transform: translateY(-2px);
  border-color: #0894ff;
}

.generate-section {
  margin-top: 25px;
}

.generate-section button {
  width: 100%;
}

.copy-section {
  margin-top: 25px;
  padding: 20px;
  background: #f8f9fd;
  border-radius: 18px;
  border: 1px solid #edf0f5;
}

.copy-section h3 {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #666;
}

.copy-buttons {
  display: flex;
  gap: 12px;
}

.copy-buttons button {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  background: white;
  border: 1px solid #e5e9f0;
  font-weight: 600;
}

.copy-buttons button:hover {
  background: #f3f6fb;
}

#submit-button {
  flex: 2;
  color: white;
  background: linear-gradient(135deg, #0894ff, #c959dd);
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  font-weight: 600;
}

#submit-button:hover {
  transform: translateY(-2px);
}

#btnCopiar {
  flex: 1;
  background: #edf1f7;
}

#btnCopiar:hover {
  background: #e5ebf4;
}

.codes-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}

.codes-grid li {
  position: relative;
  background: white;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 3px;
}

.codes-grid li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#toasts {
  position: fixed;
  bottom: 10px;
  right: 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.toast {
  background-color: #fff;
  border-radius: 5px;
  padding: 1rem 2rem;
  margin: 0.5rem;
  /* border: solid 0.1px #F094D4; */
  border: 1px solid;
  -o-border-image: linear-gradient(108deg, #0894FF, #C959DD 34%, #FF2E54 68%, #FF9004);
     border-image: linear-gradient(108deg, #0894FF, #C959DD 34%, #FF2E54 68%, #FF9004);
  border-image-slice: 1;
  /* border-radius: 999px; */
}

.toast.info {
  color: rebeccapurple;
}

.toast.success {
  color: green;
}

.toast.error {
  color: red;
}/*# sourceMappingURL=styles.css.map */