body {
    font-family: "Segoe UI", Roboto, sans-serif;
    background: #02240f;              /* mørk grøn baggrund */
    margin: 0;
    padding: 60px 20px;
    color: #f2f68c;                   /* soft yellow tekst */
  }
  
  /* Overskrift */
  h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #f2f68c;                   /* gul som på forsiden */
    text-align: center;
    margin-bottom: 25px;
  }
  
  /* Card-boks omkring formularen */
  form {
    max-width: 420px;
    margin: 0 auto;
    background: #033019;              /* lidt lysere grøn */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  }
  
  /* Label */
  label {
    font-weight: 600;
    color: #f7ff84;                   /* lys gul */
  }
  
  /* Inputs */
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #f2f68c;        /* gul kant */
    margin-top: 5px;
    box-sizing: border-box;
    background: #01180a;              /* mørk grøn indeni feltet */
    color: #f7ff84;                   /* gul tekst i input */
  }
  
  input:focus {
    border-color: #f7ff84;
    outline: none;
    box-shadow: 0 0 4px rgba(247, 255, 132, 0.6);
  }
  
  /* Knap */
  button[type="submit"] {
    background: #f7ff84;              /* bright yellow CTA */
    color: #02240f;                   /* mørk grøn tekst */
    padding: 12px 18px;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(0,0,0,0.4);
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  }
  
  button[type="submit"]:hover {
    background: #eefb6e;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.5);
  }
  
  button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  }
  
  /* Link tilbage */
  a {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #f7ff84;
    text-decoration: none;
  }

  input::placeholder,
  textarea::placeholder {
    color: rgba(242, 246, 140, 0.6); /* soft yellow */
  }
  
  a:hover {
    text-decoration: underline;
  }