* {
    margin: 0%;
    padding: 0%;
}
:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
body {
    margin: 0;
    padding: 0;
    height: 140vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, rgb(69, 181, 255), rgb(108, 0, 197),rgb(69, 181, 255), rgb(108, 0, 197));
}
.login {
  width: 248px;
  padding: 20px;
  background-color: #d6d6d666;
  border-radius: 10px;

  /* Centrado absoluto */
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  font-weight: bold;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.submitleft,
.submitright {
  color: white;
  background-color: #0058ff; /* azul por defecto */
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 5px;
}
/* Hover para ambos */
.submitleft:hover,
.submitright:hover {
  background-color: #0800ff;
}

/* Estilo específico para el botón derecho */
.submitright {
  background: linear-gradient(150deg, #6200ea, #6b0feb,#6200ea, #7717ff);
}

.submitright:hover {
  background-color: #00ff3c;
  color: rgb(0, 0, 0);
}
.brandinicio{
    width: 36%;
    position: absolute;
    bottom: 3px;
    right: 9px;
    z-index: 4;
}
.mrtnz {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: -6px 20px;
    background: linear-gradient(150deg, rgb(69, 255, 212), rgb(0, 197, 151),rgb(69, 255, 212), rgb(0, 197, 151));
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    color: white;
    font-family: Arial, sans-serif;
    border-radius: 10px 10px 0 0;
    z-index: 3;
    text-align: center;
}
.message{
  width: 70%;
  max-width: 500px;
  padding: 10px;
  /*background-color: #ffffffa6;*/
  position: relative;
  top: -39%;
  text-align: justify;
}
.bienvenida {
  color: aliceblue;
  font-size: 10px;
  /* Degradado en el texto */
  background: aliceblue;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  /* Animación de entrada */
  opacity: 0;
  transform: translateY(-40px);
  animation: fadeDown 1.2s ease-out forwards;
}
.emprevete{
  width: 248px;
  padding: 20px;
  background-color: #d6d6d626;
  border-radius: 10px;

  /* Centrado absoluto */
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  font-weight: bold;
  flex-direction: column;
  align-items: center;
  gap: 15px;

}
.btnveterinarias{
  background: linear-gradient(150deg, #6200ea, #6b0feb,#6200ea, #7717ff);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 5px;
}
.btnemprendedores{
  background: linear-gradient(150deg, #6200ea, #6b0feb,#6200ea, #7717ff);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 5px;
}
.reback{
  background: linear-gradient(150deg, #6200ea, #6b0feb,#6200ea, #7717ff);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 5px;
  margin-top: -88px;
  margin-bottom: 45px;
  margin-left: 136px;
  display: block;
}
.rebacking {
  background: linear-gradient(150deg, #6200ea, #6b0feb,#6200ea, #7717ff);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 5px;
  margin-top: -88px;
  margin-bottom: 45px;
  margin-left: 136px;
  display: block;
}
.error{
  width: 85%;
  color:rgb(212, 0, 255); 
  font-size: 10px;
}
.btnveterinarias:hover{
  background: linear-gradient(150deg, #18003a, #18003a,#18003a, #18003a);
  color: rgb(255, 255, 255);
}
.btnemprendedores:hover {
  background: linear-gradient(150deg, #18003a, #18003a,#18003a, #18003a);
  color: rgb(255, 255, 255);
}
.loginEmprend {
  width: 248px;
  padding: 20px;
  background-color: #7776;
  border-radius: 10px;

  /* Centrado absoluto */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  font-weight: bold;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.emprendeTittle {
  color: white;
}
.loginVeterinaria {
  width: 248px;
  padding: 20px;
  background-color: #7776;
  border-radius: 10px;

  /* Centrado absoluto */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  font-weight: bold;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.password-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 85%;
}

/* input ocupa todo el espacio restante */
.password-row input[type="password"] {
  flex: 1;
  min-width: 0; /* 🔥 FIX CRÍTICO para Safari */
  box-sizing: border-box;
}

/* checkbox estable */
.showpass {
  display: flex;
  align-items: center;
}

.showpass input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  box-shadow: rgba(0, 0, 0, 0.18) -1px 3px 11px;
}

/* Animación de gradiente para el botón de descarga */
.animated-gradient {
  background: linear-gradient(270deg, rgb(69, 181, 255), rgb(108, 0, 197), rgb(69, 181, 255), rgb(108, 0, 197));
  background-size: 400% 400%;
  color: white;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

button:focus,
  a:focus,
  input:focus {
  outline: none;
  box-shadow: none;
}
