.input-contenedor {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.input-contenedor .icono {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa; /* Color del icono */
}

.input-contenedor .input-campo {
  width: 100%;
  padding: 10px 10px 10px 40px; /* El padding izquierdo (40px) evita que el texto tape al icono */
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #f0faff;*/
  background-image: url("./img/image_64834.jpg");
  background-repeat: no-repeat; /* Evita que la imagen se repita como mosaico */
  background-size: cover; /* Ajusta la imagen para cubrir todo el contenedor sin deformarlo */
  background-position: center; /* Centra la imagen en el elemento */
  background-attachment: fixed; /* (Opcional) Fija la imagen al hacer scroll */
  position: relative;
  overflow: hidden;
}

.wrapper {
  position: relative;
  max-width: 470px;
  width: 100%;
  border-radius: 12px;
  padding: 20px 30px 120px;
background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.form.login {
  position: absolute;
  left: 50%;
  bottom: -86%;
  background: #fc0f95;
  transform: translateX(-50%);
  width: calc(100% + 220px);
  padding: 20px 140px;
  border-radius: 50%;
  height: 100%;
  color:#FFF;
  transition: all 0.6s ease;
}

.wrapper.active .form.login {
  bottom: -15%;
  color:#FFF;
  border-radius: 35%;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.form header {
  font-size: 30px;
  text-align: center;
  color: #002b8a;
  font-weight: 600;
  cursor: pointer;
}

.form.login header {
  color:#FFF;
  opacity: 0.6;
}

.wrapper.active .form.login header {
  opacity: 1;
}

.wrapper.active .signup header {
  opacity: 0.6;
}

.wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

form input {
  height: 60px;
  outline: none;
  border: none;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  border-radius: 8px;
  background: #fff;
}

.form.login input {
  border: 1px solid #aaa;
}

.form.login input:focus {
  box-shadow: 0 1px 0 #ddd;
}

form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox input[type="checkbox"] {
  height: 16px;
  width: 16px;
  accent-color: #fff;
  cursor: pointer;
}

form .checkbox label {
  cursor: pointer;
  color: #fff;
}

form a {
  color: #333;
  text-decoration: none;
}

form a:hover {
  text-decoration: underline;
}

form input[type="button"] {
  margin-top: 15px;
  padding: none;
  color:#FFF;
  font-family: 'Arial Black';
  background: #fc0f93;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.form.login input[type="button"] {
  background: #002b8a;
  color: #fff;
  font-family: 'Arial Black';
  border: none;
}
