/* auth.css - Estilos específicos para vistas de autenticación, pagos y mensajes */

.auth-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f2f2f2;
  padding-top: 4rem;
  /* Para compensar el header fixed */
  background-image: url("img/logos/Favicon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20%;
  background-blend-mode: overlay;
}



.header {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 100;
  height: 80px;
  background: #f2f2f2;
}

.auth-container {
  width: 100%;
  max-width: 450px;
  padding: 1rem;
  z-index: 10;
}

.auth-box {
  background-color: white;
  border: 1px solid #9933cc;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.auth-tab {
  flex: 1;
  padding: 1rem;
  background: #f9f9f9;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: bold;
  color: #666;
  transition: all 0.3s ease;
}

.auth-tab.active {
  background: white;
  color: #9933cc;
  border-bottom: 3px solid #9933cc;
}

.auth-tab:hover:not(.active) {
  background: #f0f0f0;
}

.auth-form {
  display: none;
  padding: 2rem;
  flex-direction: column;
  gap: 1.25rem;
}

.auth-form.active {
  display: flex;
}

.auth-title {
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
  font-family: "Fira Sans", sans-serif;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-size: 0.9rem;
  color: #555;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
}

.input-group input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Fira Code", monospace;
}

.input-group input:focus {
  outline: none;
  border-color: #9933cc;
  box-shadow: 0 0 0 2px rgba(153, 51, 204, 0.2);
}

.btn-primary {
  background-color: #9933cc;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  font-family: "Fira Sans", sans-serif;
  transition: background-color 0.3s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.btn-primary:hover {
  background-color: #7a28a3;
}

.auth-footer {
  text-align: center;
  margin-top: 1rem;
}

.forgot-password {
  color: #9933cc;
  font-size: 0.9rem;
  text-decoration: underline;
  font-family: "Fira Sans", sans-serif;
}

/* Utilities para las otras pantallas */
.simple-message-box {
  background: white;
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #9933cc;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.simple-message-box h2 {
  color: #9933cc;
  font-size: 1.8rem;
}

.simple-message-box p {
  color: #555;
  font-family: "Fira Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.btn-secondary {
  background-color: transparent;
  color: #9933cc;
  border: 2px solid #9933cc;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Fira Sans", sans-serif;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #9933cc;
  color: white;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
}

.btn-mp {
  background-color: #009ee3;
  color: white;
  border: none;
}

.btn-mp:hover {
  background-color: #007ebd;
}

.payment-options-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}