body {
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tarjeta-login {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background-color: white;
  }
  
  .area-icono {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #0d6efd;
    font-size: 50px;
  }
  
  .btn-acceder {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    font-weight: 600;
  }
  
  .link-olvide {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #0d6efd;
    text-decoration: none;
  }
  
  .link-olvide:hover {
    text-decoration: underline;
  }