body {
      min-height: 100vh;
      background: linear-gradient(135deg, #1C1C1C, #2A2A2A);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
    }

    .login-card {
      background-color: #FFF8E1;
      padding: 30px;
      border-radius: 12px;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    .login-card h2 {
      text-align: center;
      margin-bottom: 25px;
      color: #1C1C1C;
      font-weight: 600;
    }

    label {
      font-weight: 500;
      color: #2B2B2B;
    }

    input[type="text"],
    input[type="password"] {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #CCC;
      margin-bottom: 15px;
    }

    input:focus {
      outline: none;
      border-color: #F2B705;
      box-shadow: 0 0 0 2px rgba(242,183,5,0.2);
    }

    input[type="submit"] {
      width: 100%;
      background-color: #F2B705;
      color: #1C1C1C;
      border: none;
      padding: 12px;
      border-radius: 6px;
      font-weight: 600;
      transition: 0.3s;
    }

    input[type="submit"]:hover {
      background-color: #E0A800;
    }

    .brand {
      text-align: center;
      margin-bottom: 10px;
      font-weight: bold;
      color: #F2B705;
      letter-spacing: 1px;
    }