body {
    background-color: #4db7fe;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alineamos arriba */
    height: 100vh;
    margin: 0;
    padding-top: 40px; /* Espacio desde la parte superior */
  }
  
  .login-container {
    background-color: transparent;
    padding: 40px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
  }
  
  .login-container img {
    max-width: 160px; /* Logo en pantallas normales */
    margin-bottom: 20px;
  }
  
  .login-container h1 {
    color: white;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 30px;
  }
  
  input[type="text"],
  input[type="password"],
  button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
  }
  
  input[type="text"],
  input[type="password"] {
    background-color: white;
  }
  
  button {
    background-color: #2196f3;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #1976d2;
  }
  
  /* Estilos para pantallas pequeñas */
  @media (max-width: 480px) {
    .login-container img {
      max-width: 120px; /* Logo más pequeño */
    }
  
    .login-container h1 {
      font-size: 18px;
      margin-bottom: 20px;
    }
  
    .login-container {
      padding: 20px;
      width: 90%;
    }
  }
  
  