  body {
      background-color: #feccd8;
      font-family: 'Segoe UI', sans-serif;
      height: 100vh;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .login-container {
      position: relative;
      width: 100%;
      max-width: 400px;
      background-color: white;
      border-radius: 20px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      padding: 60px 30px 30px 30px;
      /* espacio para el logo sobresaliente */
  }

  .logo-floating {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      background-color: #fd7c9a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      border: 5px solid white;
      z-index: 1;
  }

  h2 {
      color: #fd7c9a;
      text-align: center;
      margin-bottom: 20px;
      margin-top: 20px;
  }

  .btn-pink {
      background-color: #fd7c9a;
      color: white;
  }

  .btn-pink:hover {
      background-color: #e96583;
  }

  .form-label {
      font-weight: 600;
      color: #fd7c9a;
      font-size: 14px;
  }

  .form-control {
      border: 2px solid #fd7c9a;
      border-radius: 12px;
      padding: 10px 14px;
      font-size: 15px;
      transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-control:focus {
      border-color: #e96583;
      box-shadow: 0 0 0 0.2rem rgba(253, 124, 154, 0.25);
  }