/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }
  
  body {
    background-color: #f4f7fb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 16px;
    color: #333;
  }
  
  .login-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
  }
  
  .logo-container {
    margin-bottom: 30px; /* Espacio debajo del logo */
  }
  
  .logo {
    width: 80px; /* Tamaño del logo */
    height: auto;
    margin-bottom: 10px;
  }
  
  .software-name {
    font-size: 32px;
    color: #3498db;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
  }
  
  input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: all 0.3s;
  }
  
  input[type="text"]:focus, input[type="password"]:focus {
    border-color: #3498db;
    background-color: #eaf2fb;
    outline: none;
  }
  
  button {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #2980b9;
  }
  
  footer {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
  }
  
  footer a {
    text-decoration: none;
    color: #3498db;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* Estilos responsive */
  @media (max-width: 480px) {
    .login-container {
      padding: 30px;
    }
  
    .login-container h2 {
      font-size: 20px;
    }
  
    input[type="text"], input[type="password"] {
      font-size: 14px;
    }
  
    button {
      font-size: 14px;
    }
  }
  