body {
      height: 100vh;
      margin: 0;
      background: linear-gradient(to bottom right, #8B0000, #0B2C59);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .login-card {
      background-color: #fdfbf5;
      border-radius: 15px;
      padding: 40px 30px;
      width: 500px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .login-card h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color: #0B2C59;
      font-weight: bold;
    }

    .form-label {
      font-weight: 600;
      color: #0B2C59;
      text-align: left;
      display: block;
    }

    .btn-login {
      background-color: #0B2C59;
      color: #fff;
      font-weight: bold;
      width: 100%;
      margin-bottom: 10px;
    }

    .btn-login:hover {
      background-color: #173b6d;
      color: white;
    }

    .footer-text {
      margin-top: 20px;
      font-size: 14px;
      color: #0B2C59;
      font-style: italic;
    }