body {
  margin: 0;
}

/* Grid Einstelllungen */
.grid{
display:grid;
grid-template-columns: 1fr 3fr 1fr 1fr 3fr 1fr 1fr 1fr;
column-gap: 5px;
row-gap: 5px;
padding: 1%;
grid-template-areas:
                    "l l l t t r r r"
                    "l l l a a r r r"
                    "l l l v na r r r"
                    "l l l an an r r r"
                    "l l l sh op r r r"
                    "l l l n n r r r"
                    "l l l re re r r r";

}


.input {
  border-radius: 30px;
}

/* Untertitel Einstellungen*/
#untertitel {
  font-weight: normal;
  font-size: 20px;
  font-family: "montserrat";
}

/* Unertitel1 Einstellungen*/
#untertitel1 {
  font-weight: normal;
  font-size: 20px;
  font-family: "montserrat";
  color: white;
}

.bildheader {
  max-width: 80%;
}


/* Ueberschrift Einstellungen*/
#ueberschrift {
  font-weight: bold;
  font-size: 15px;
  font-family: "montserrat";
}

/* Gridbox Einstellungen*/
.gridbox {
  background-color: white;
  padding: 5px;
	
  /* Zum schauen, wie das Grid funktioniert (auskommentiert lassen)
  box-shadow: -10px 0px 13px -7px #000, 10px 0px 13px -7px #000 , 
  5px 5px 24px 27px rgba(0,0,0,0);
*/
}

/* Anrede Einstelllungen*/
.anrede {
  margin-bottom: 20px;
}

#anrede {
  font-size: 15px;
  font-weight: normal;
  margin-right: 10px;
  font-family: "montserrat";
}




/* Registration Einstellungen*/
#registrieren {
  border-radius: 30%;
  height: 50px;
  width: 200px;
  border: none;
  color: black;
  font-family: "montserrat";
  padding:5px 15px; 
  background:#ccc; 
  border:0 none;
  cursor:pointer;
  -webkit-border-radius: 5px;
  border-radius: 5px; 
  font-size: 20px;
  font-weight: normal;
}
  
/* Titel Einstellungen*/
.titel {
        grid-area: t;
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #000;
        text-decoration: underline;
}

/* Vorname Einstellungen*/
.vorname {
  grid-area: v;
}

/*Nachname Einstellungen*/
.nachname {
  grid-area: na;
}

/*Grid right*/
.right {
  grid-area: r;
}

/*Grid left*/
.left {
  grid-area: l;
}

/* Abgaben*/
.angaben {
    grid-area: a;

/*grid-area Einstellungen*/
}
.anmeldedaten {
    grid-area: an;
}

.strassehausnummer {
    grid-area: sh;
}

.ortplz {
  grid-area: op;
}

.newsletter {
    grid-area: n;
}

.registrieren {
    grid-area: re;
}

.footer {
    grid-area: f;
}


/*Voragbe Text*/
#vorgabetext{
    font-size: 12px;
    font-weight: normal;
    font-style: italic;
}

/*body Einstellungen*/
body{
    background: #FFFFFF;
    padding: 0 10px;
}

/*Strassenhausnummer Einstellungen*/
.strassehausnummer {
  margin-bottom: 20px;
}

/*Ort Plz Einstellungen*/
.ortplz {
  margin-bottom: 20px;
}

/*Telefonnummer Einstellungen*/
.telefonnummer {
  margin-bottom: 10px;
}

/*switch Einstellungen*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

.ladenbild {
  width: 100%;
  height: 100%;
}