select, textarea, button, p, label {
  font-size: inherit;
  font-family: Roboto, sans-serif;
  padding: 5px; 
  margin: 5px;
}

div {
  font-size: inherit;
  font-family: Roboto, sans-serif;
}

/* ===============  Container: big black Headline ============= */
.gridhead-container {
  display: grid;
  grid-template-columns: 95px 280px;
  grid-template-rows: 100px;
  background-color: #000F00;
  padding: 5px;
}

.gridhead-item {
  padding: 5px;
  font-size: 12px;
  text-align: left;
  align-self: end;
  color: #FFFFFF;
  flex-direction: column;
  font-family: Roboto, sans-serif;
}

/* ===============  Container: option buttons ============= */
.form-container {
  display: grid;
  grid-template-columns: 25px 1fr;
  grid-template-rows: 80px;
  background-color: #FFFFFF;
  padding: 5px;
}

.form-item {
  padding: 5px;
  text-align: left;
  align-self: center;
  color: #000000;
  flex-direction: column;
  font-family: Roboto, sans-serif;
}  

/* ===============  Standard lines: option buttons ============= */
.inputbutton, .iblightblue {
  font-size: 1.2em; 
  padding: 6px 18px; 
  font-family: Roboto, sans-serif;
  font-weight: 300;
  border: 1px solid silver;
  /* color: darkslategrey; */
  /* background-image: linear-gradient(to top, gainsboro 0%, white 90%); */
  border-radius: 6px;
  margin: 0px 5px 0px 0px;
}

.ibgrey {
  background-image: linear-gradient(to top, gainsboro 0%, white 90%);
  color: darkslategrey;
  margin: 0px auto;
}

.ibred {
  /* button red foratted, gradient high color #A10000 0%, red 30% = #FF0000 --- background-image: linear-gradient(to top, #A48080 0%, #FFAAAA 30%);  */
  background-image: linear-gradient(to top, #A10000 0%, #FF0000 30%);  
  color: white;
  margin: 0px auto;
}

.ibgreen {
  /* button green foratted, gadient color: #0CA00C 0%, limegreen 30% = #32CD32 -- 
               light green: gadient color: #4CC84C 0%, limegreen 30% = #94EF94 */  
  background-image: linear-gradient(to top, #0CA00C 0%, #32CD32 30%);  
  color: white;
  margin: 0px auto;
}

.iblightblue {
  /* button blue foratted, gadient color: #0CA00C 0%, limegreen 30% = #32CD32 -- 
               light green: gadient color: #4CC84C 0%, limegreen 30% = #94EF94 */  
  background-image: linear-gradient(to top, #96B6FF 0%, #ACC2FF 30%);  
  color: white;
  margin: 0px auto;
}

.inputtext { 
  width: 100%; 
  min-width: 100%; 
  box-sizing: border-box;
  border: 1px solid silver;
  border-radius: 6px;
  background-image: linear-gradient(to top, #EEEEEE 00%, white 75%);
  outline: none;
  padding: 8px;
  margin: 5px 5px 5px 0px;
}

label {
  display: block; 
}

/* ===============  email block ============= */
.email-block {
    background-color: #f5f5f5; /* leicht grau */
   /* border-radius: 8px;*/
    padding: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}
.email-block.show {
    max-height: 220px;  /* muss groß genug sein, um alle Felder aufzunehmen */
    opacity: 1;
}

/* ============== FEHLERMELDUNGEN ================ */

@-webkit-keyframes fadeInOut {0% {opacity: 0;} 16% {opacity: 1;} 84% {opacity: 1;} 100% {opacity: 0;}}
@keyframes fadeInOut {
  0% {opacity: 0; transform: translateY(-200%);} 
  10% {opacity: 1;transform: translateY(0%)} 
  90% {opacity: 1;transform: translateY(0%)} 
  100% {opacity: 0;transform: translateY(-200%)}
}

.isa_info, .isa_red, .isa_green, .isa_orange {
  margin:10px 0px;
  padding:12px;
  border-radius:.5em;
  position: absolute;
  right: 5%;
  top: 5%;
  font-family: Roboto, sans-serif;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 12px;
  opacity:0;
  -webkit-animation: fadeInOut 5.2s;
  animation: fadeInOut 5.2s;
}

.isa_info {color: #00529B;background-color: #BDE5F8;}
.isa_green {background-color: #00BA00;}
.isa_red {background-color: #FF3232;}
.isa_orange {background-color: #FFC745;}

/* =====   Statusmeldungen   =====  */

.resultmsg_green, .resultmsg_red, .resultmsg_orange, .resultmsg_grey, .resultmsg_info { /*Format für alle Nachrichten */ 
    padding: 10px; 
    margin-top: 20px; 
    border-radius: 6px; /* Abgerundete Ecken */
    /* text-align: center; */
  	font-weight: 200%;
    font-size: small; 
}

.resultmsg_green {
    background-color: #d4edda; /* Hellgrüner Hintergrund */
    color: #155724; /* Dunkelgrüner Text */
    /* border: 1px solid #c3e6cb;  Passender Rahmen */ 
}

.resultmsg_red {
    background-color: #f8d7da; /* helles Rot*/
    color: #721c24; /* dunkles Rot */
    /* border): #f5c6cb */
}

.resultmsg_orange {
    background-color: #fff3cd; /* helles Orange*/
    color: #8f8a7c; /* dunkles Orange */
    /* border): #fff3cd */
}

.resultmsg_grey {
    /*font-size: x-small;   */ /* optional*/
    background-color: #f0f0f0;  /* helles grau*/
    color: #666666;   /*  grau */
}

.resultmsg_info {
    margin-top: 6px;
    background-color: #ddddee; /* helles bläulich*/
    color: #555577; /* dunkles bläulich */
}
