/* login.css */

.login-section {
  max-width: 400px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Título */
.login-section h2 {
  margin-bottom: 24px;
  color: #333;
}

/* Inputs */
.login-section input[type="email"],
.login-section input[type="password"],
.login-section input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 0px 0;
  border: 1px solid #ccc;
  border-radius: 100px;
  font-size: 16px;
  box-sizing: border-box;
  height: 48px;
  font-family: inherit;
}


/* Checkbox */
.toggle-password {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0px;
}

.toggle-password input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
}

.toggle-password {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  height: 24px; 
}



/* Labels */
.login-section label {
  display: block;
  text-align: left;
  margin-top: 12px;
  color: #555;
  font-size: 14px;
}

/* Botón */
.login-section button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background-color: #007bff;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-section button:hover {
  background-color: #0056b3;
}

/* Links */
.login-section p a {
  color: #007bff;
  text-decoration: none;
}

.login-section p a:hover {
  text-decoration: underline;
}

/* Mensajes */
.login-section p {
  margin-top: 20px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .login-section {
    max-width: 300px;
    padding: 30px;
  }

  .login-section h2 {
    font-size: 1.3rem;
  }

  .login-section input,
  .login-section button {
    font-size: 15px;
    height: 44px;
  }

  .login-section label {
    font-size: 13px;
  }

  .login-section p {
    font-size: 13px;
  }
}