 body {
      background: linear-gradient(135deg, #1d2b64, #f8cdda);
      min-height: calc(100vh - 96px);
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 40px 20px;
      font-family: "Poppins", sans-serif;
    }

    .container {
      width: 100%;
      max-width: 680px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(16px);
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .header img {
      max-height: 55px;
    }

    .header a {
      margin: auto;
      display: inline-block;
    }

    .header .mline {
      font-size: 18px;
      color: #ffd;
      font-weight: 600;
      font-style: italic;
      max-width: 400px;
      text-align: right;
    }

    h1 {
      text-align: center;
      font-size: 28px;
      margin: 15px 0;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    hr {
      border: none;
      height: 1px;
      background: rgba(255, 255, 255, 0.4);
      margin: 12px 0 20px 0;
    }

    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .input-group {
      display: flex;
      flex-direction: column;
    }

    .input-group.full-width {
      grid-column: span 2;
    }

    label {
      font-size: 13px;
      margin-bottom: 6px;
      color: #eee;
      font-weight: 500;
    }

    input, select {
      padding: 10px 12px;
      border-radius: 10px;
      border: none;
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      transition: 0.3s;
    }
    select:focus {
      color: #000;
    }

    input:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.35);
    }

    .btn {
      grid-column: span 2;
      padding: 12px;
      border-radius: 12px;
      border: none;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      background: linear-gradient(135deg, #ff512f, #dd2476);
      color: #fff;
      transition: 0.3s;
    }

    .btn:hover {
      opacity: 0.9;
    }

    .links {
      grid-column: span 2;
      margin-top: 12px;
      text-align: center;
    }

    .notification {
      text-align: center;
      margin-bottom: 10px;
    }

    .pw-status {
      font-size: 12px;
      margin-top: 4px;
    }

    .pw-status.red {
      color: #ff7070;
    }

    .pw-status.green {
      color: #90ee90;
    }