/* Nulstil */
body {
  margin: 0;
  font-family: sans-serif;
}

.background {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay der fader baggrunden */
.background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); /* Hvid med 50% gennemsigtighed */
}

  /* Tilbage-knap */
  .back{
    position:absolute;
    top:20px;
    left:20px;
    display:flex;
    align-items:center;
    gap:.6rem;
    text-decoration:none;
    color: #111;
    z-index:3;
    font-weight:600;
    letter-spacing:.02em;
  }
  .back svg{
    width:20px; height:20px;
  }
  .back:hover{ opacity:.85 }
body {
    font-family: Arial, sans-serif;
    padding: 30px;
    background: linear-gradient(to bottom, #ccc 0%, white 100%);
  }
  
  form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  label {
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  input,
  select,
  textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  textarea {
    min-height: 100px;
  }
  
  .flex-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
  }
  
  .flex-row > div {
    flex: 1;
  }
  
  button {
    margin-top: 20px;
    background-color: #00aef0;
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  button:hover {
    background-color: #008ec4;
  }
