 :root {
      --primary: #6d0f2b;
      --accent: #f08a24;
      --bg: #faf7f3;
      --white: #ffffff;
      --text: #1f1f1f;
      --muted: #666;
      --radius: 16px;
      --shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Inter", sans-serif;
    }

    body {
     
      
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 20px;
    }
.bg-image {
  position: fixed;
  inset: 0;

  background: url("/images/bg-bg-upc.png") center/cover no-repeat;


  z-index: -1;
}
    .container {
      max-width: 600px;
      width: 100%;
      background: var(--white);
      padding: 40px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      animation: fadeIn 0.8s ease;
    }
    .logo img {
         height: 100px; /* adjust size */
         width: auto;
         text-align: center;
         display: block;
         margin: auto;
}

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .logo {
      text-align: center;
      font-weight: 800;
      font-size: 24px;
      color: var(--primary);
      margin-bottom: 10px;
    }

    h1 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 10px;
      color: var(--text);
    }

    p.subtitle {
      text-align: center;
      color: var(--muted);
      margin-bottom: 30px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .input-group {
      display: flex;
      flex-direction: column;
      margin-top: 20px;
    }

    label {
      font-size: 14px;
      margin-bottom: 6px;
      color: var(--muted);
    }

    input, select {
      padding: 14px;
      border-radius: 10px;
      border: 1px solid #ddd;
      font-size: 14px;
      transition: 0.3s;
    }

    input:focus, select:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(109, 15, 43, 0.1);
    }

    .cta {
      margin-top: 10px;
      padding: 16px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .cta:hover {
      background: #4f0b1f;
      transform: translateY(-2px);
    }

    .note {
      font-size: 12px;
      text-align: center;
      color: var(--muted);
      margin-top: 15px;
    }

    .success-message {
      display: none;
      text-align: center;
      padding: 20px;
      background: #e7f4eb;
      border-radius: 12px;
      margin-top: 20px;
      color: #2f7d4d;
      font-weight: 500;
    }
