:root {
  --maincolor: rgba(176, 180, 207, 1);
  --yellow: #FFDD00;
  --red: #BC171D;
  --blue: #005496;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  width: 100vw;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: 'Pragati Narrow', sans-serif;
  font-size: 14px;
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

::-moz-selection {
  color: white;
  background-color: var(--blue);
}

::selection {
  color: white;
  background-color: var(--blue);
}

a:link,
a:active,
a:visited {
  color: black;
  text-decoration: none;
}

.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
  margin: auto auto;
  padding: 1rem;
  /* background: rgba(255, 255, 255, 1); */
  -webkit-box-shadow: 2px 4px 2rem rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 2rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 70vw;
  max-width: 90vw;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.box:hover {
  -webkit-box-shadow: 2px 4px 2rem rgba(0, 0, 0, 0.07);
          box-shadow: 2px 4px 2rem rgba(0, 0, 0, 0.07);
}

.box .left,
.box .right {
  padding: 2rem;
}

.box .left {
  border-right-width: 3px;
  border-right-style: solid;
  -o-border-image: linear-gradient(to bottom, transparent, black, transparent) 1 100%;
     border-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(black), to(transparent)) 1 100%;
     border-image: linear-gradient(to bottom, transparent, black, transparent) 1 100%;
}

.box .left .imprint {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  opacity: .9;
}

.box .left a {
  -webkit-transition: color 1s;
  transition: color 1s;
}

.box .left a:hover {
  color: var(--red);
}

.box .right {
  text-align: center;
}

.box .right a {
  -webkit-transition: color .5s ease-out;
  transition: color .5s ease-out;
}

.box .right a:hover {
  color: var(--blue);
}

/** Form Styling **/
form label {
  color: var(--blue);
  display: block;
  font-weight: bold;
}

form input {
  color: black;
  font-family: 'Pragati Narrow', sans-serif;
  min-width: 25vw;
  height: 2.1rem;
  opacity: .8;
}

form textarea {
  font-family: 'Pragati Narrow', sans-serif;
  min-width: 25vw;
  font-size: .9rem;
  opacity: .8;
}

form .btn {
  background-color: var(--blue);
  margin: 1rem auto auto auto;
  width: 100%;
  height: 2rem;
  font-family: 'Pragati Narrow', sans-serif;
  text-transform: uppercase;
  border: none;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  color: white;
  font-weight: bold;
}

form .btn:hover {
  background: var(--red);
  color: black;
  cursor: pointer;
}

.logo {
  max-width: 100%;
  height: auto;
}

h1 {
  letter-spacing: -2px;
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.spacer {
  height: .15rem;
  margin: .2rem 1rem;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(black), to(transparent));
  background: linear-gradient(90deg, transparent, black, transparent);
}

.adress {
  font-size: 1.15rem;
}

.para {
  font-weight: bold;
  font-size: 1.1rem;
}

/** Responsive **/
@media only screen and (max-width: 600px) {
  .box {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .box .left {
    border: none;
  }
  form input {
    min-width: 70vw;
  }
  form textarea {
    min-width: 70vw;
  }
}
/*# sourceMappingURL=style.css.map */