*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;       
}

body{
    width: 100%;
    height: 100 vh;
    background-image: url("hintergrundbild\ formular.png");
    background-attachment: fixed;
}

.hero-image {
    background-color: rgb(13, 100, 129);
    opacity: 0.8;
    position: relative;
    background: url("ai-generated-8205299_1280.jpg") no-repeat center;
    background-size: cover;
    height: 300px;
    color: rgb(4, 0, 8);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    text-align: center;
    color: rgb(5, 5, 5);
    font-weight: 700;
    text-transform: uppercase;
}

.container h1{
    font-size: 6vmax;
    letter-spacing: 0.2em;
    margin: 0;
}

.content {
    padding: 20px;
    background: rgba(69, 124, 167, 0.9);
    width: 800px;
    margin: 50px auto;
    max-width: 97%;
    border-radius: 4px;
    padding: 55px 30px;
}
.content h4 {
padding-bottom: 8px;
}

form{
    background: rgba(69, 124, 167, 0.9);
    width: 640px;
    margin: 50px auto;
    max-width: 97%;
    border-radius: 4px;
    padding: 55px 30px;
  }
  
  form .title h2{
    letter-spacing: 4px;
    border-bottom: 1px solid white;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 32px;
  }
  
  form .half{
    display: flex;
    justify-content: space-between;
  }
  
  form .half .item{
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    width: 48%;
  }
  
  form label{
    display: block;
    font-size: 16px;
    letter-spacing: 3.5px;
    margin-bottom: 16px;
  }
  
  form .half .item input{
    border-radius: 4px;
    border: 1px solid white;
    outline: 0;
    padding: 16px;
    width: 100%;
    height: 44px;
    background: transparent;
    font-size: 17px;
  }
  
  form .full{
    margin-bottom: 24px;
  }
  
  
  form .action{
    margin-bottom: 32px;
  }
