/* Estilos para el formulario de login */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: 20px;
    margin-top: 60px;
    background-color: #f9f9f9;
  }
  
  .login-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .login-box h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
  }
  
  .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
  }
  
  .form-group input:focus {
    border-color: #3498db;
    outline: none;
  }
  
  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
    color: #555;
  }
  
  .remember-me input {
    margin-right: 8px;
  }
  
  .forgot-password {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .forgot-password:hover {
    color: #2980b9;
  }
  
  .login-btn {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .login-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
  }
  
  .login-footer {
    text-align: center;
    margin-top: 25px;
    color: #555;
    font-size: 0.9rem;
  }
  
  .register-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .register-link:hover {
    color: #2980b9;
  }
  
  /* Responsive */
  @media (max-width: 576px) {
    .login-box {
      padding: 30px 20px;
    }
    
    .form-options {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .forgot-password {
      margin-top: 10px;
    }
  }