body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
}

.wrapper {
  width: 400px;
  margin: 0 auto;
  border-radius: 25px;
  margin-top: 150px;

  animation: fadeInFromTop 1s;
  animation-delay: 0s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Agrega una sombra */
}

@keyframes fadeInFromTop {
  0% {
      opacity: 0;
      transform: translateY(-100px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

#formContent {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.fadeIn {
  animation: fadeIn 1s;
}

.fadeIn.first {
  animation-delay: 0.4s;
}

h1 {
  font-size: 24px;
  text-align: center;
  color: #0049B1;
}
.foto{
  display: flex; 
  justify-content: center;
  margin-bottom: 20px;
}

input[type="tex"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

input[type="submit"] {
  background-color: #0049B1;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.forgot-password {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #999;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.forgot-password:hover {
  color: #666;
}
.terms-text {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}