/* Fondo con degradado */
body {
    background: linear-gradient(135deg, #6ea8fe, #f3f8ff);
    display: flex;
    justify-content: center; /* Centra el formulario en la pantalla */
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    color: #333;
  }
  
  /* Formas geométricas */
  .shape {
    position: absolute;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
  }
  .shape-1 { width: 200px; height: 200px; top: -50px; right: -50px; }
  .shape-2 { width: 150px; height: 150px; bottom: -50px; left: -50px; }
  .shape-3 { width: 100px; height: 100px; top: 30%; right: 20%; }
  
  /* Estilo de la tarjeta de login */
  .login-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    text-align: left; /* Alinea los contenidos dentro de la tarjeta */
  }
  
  .login-card h2 {
    font-weight: 600;
    color: #007bff;
  }
  
  /* Asegura que los títulos del formulario estén en negrita */
  .form-label {
    font-weight: bold;
  }
  