* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
  background: url('https://linkreativo.com/images/seleccion/wallpaper-linkreativo.jpg') no-repeat center center fixed;
  background-size: cover;
  background-blend-mode: overlay;
  color: #232323;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
}
a{
  color: #ee3d83;
}
.contenedor {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 28px;
  margin: 0;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 20px;
  border: 0px solid #ee3d83;
  border-radius: 8px;
  background-color: white;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: #232323;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #ff5fa2;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  background-color: #ee3d83;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ff5fa2;
}

label .fw-asterisk {
  color: #ee3d83 !important;
  font-size: 16px;
}

div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
  background-color: #ee3d83 !important;
}

div:where(.swal2-icon).swal2-error {
  border-color: #ee3d83 !important;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    background: #180873 !important;
    color: #ffffff !important;
}
/* ========================
   RESPONSIVE
=========================== */
@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }

  body {
    padding: 10px;
  }

  .contenedor {
    padding: 20px;
    border-radius: 12px;
  }

  .header h1 {
    font-size: 22px;
  }

  button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
}
