/* * {
    box-sizing: border-box; 
  } */
  body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom, transparent), url("images/terberg_auf_tiffbett.png");
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .mid_terberg {
    width: 70%;
    position: absolute;
    top: 10%;
    left: 0%;
  }

  .wrapper {
    width: 400px;
    height: auto;
    color: #fff;
    padding: 50px 30px;
    position: relative;
    background: #00000080;
    border: 2px solid #fff8f88f;
    /* box-shadow: 5px 5px 15px grey; */
    border-radius: 25px;
  }
  .wrapper h2 {
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
  }
  .wrapper p {
    margin: 0;
    padding: 0;
    font-weight: 300;
    text-align: center;
  }
  .container {
    display: flex;
    /* justify-content: flex-end; */
    /* height: 100vh; */
    padding-top:5%; /* Abstand zum rechten Rand */
    padding-left:20%; /* Abstand zum rechten Rand */
  }
  
  .form-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* width: 100%; */
  }
  
  .box {
    position: relative;
    width: 100%; /* Sicherstellen, dass die Box die volle Breite hat */
  }
  .box input {
    width: 100%; /* Sicherstellen, dass das Input-Feld die volle Breite hat */
    padding-right: 30px;
  }
  .box i {
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    right: 30px;
    color: var(--secondary-color);
  }
  
  h2 {
    color: var(--secondary-color);
    font-family: var(--font-family);
    color: var(--secondary-color);
  }
  .wrapper input, button {
    border: none;
    border: 1px solid #bababa;
    background: transparent;
    outline: none;
    height: 50px;
    color: var(--secondary-color);
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 50px;
  }
  .wrapper .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .wrapper .options label {
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 3.5;
    right: 0px;
  }
  
  .wrapper a {
    text-decoration: none;
    color: var(--secondary-color);
  }
  .wrapper button {
    background: var(--secondary-color);
    color: #262626;
  }
  