* {
  box-sizing: border-box;
}

body {
  font-family: Helvetica;
  -webkit-font-smoothing: antialiased;
  background: url("../img3.jpg") no-repeat;
  background-size: cover;

  /* backdrop-filter: blur(5px); */
  /* height: 100%; */
}

hgroup {
  text-align: center;
  margin-top: 4em;
}

h1,
h3 {
  font-weight: 300;
}

h1 {
  color: #636363;
}

h3 {
  color: #48a14d;
}

form {
  width: 380px;
  margin: 2em auto;
  padding: 3em 2em 2em 2em;
  background: #fafafa;
  border-radius: 2px;
  border: 1px solid #ebebeb;
}

select {
  position: relative;
  display: inline-block;
  border-radius: 2px;
  padding: 12px 24px;
  width: 100%;
  color: #48a14d;
  outline: none;
  border: 1px solid #48a14d;
  vertical-align: middle;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  transition: all 0.15s ease;
}
select:disabled {
  color: grey;
  border: 1px solid grey;
}

.doubleGroup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.group {
  /* padding: 5px; */
  position: relative;
  margin-bottom: 30px;
}
.doubleGroup .group {
  padding: 5px;
}
input {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  -webkit-appearance: none;
  display: block;
  background: #fafafa;
  color: #636363;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #757575;
  text-align: center;
}

input:focus {
  outline: none;
  border-bottom: transparent;
}

/* Label */

label {
  color: #999;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: all 0.2s ease;
}

/* active */

input:focus ~ label,
input.used ~ label {
  top: -10px;
  transform: scale(0.9);
  left: -2px;
  /* font-size: 14px; */
  color: #48a14d;
}

/* Underline */

.bar {
  position: relative;
  display: block;
  width: 100%;
}

.bar:before,
.bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #48a14d;
  transition: all 0.2s ease;
}

.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

/* active */

input:focus ~ .bar:before,
input:focus ~ .bar:after {
  width: 50%;
}

/* Highlight */

.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active */

input:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}

/* Animations */

@keyframes inputHighlighter {
  from {
    background: #48a14d;
  }
  to {
    width: 0;
    background: transparent;
  }
}

/* Button */

.button {
  position: relative;
  display: inline-block;
  border-radius: 2px;
  padding: 12px 24px;
  margin: 0.3em 0 1em 0;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: all 0.15s ease;
}
.button:focus {
  outline: 0;
}

/* Button modifiers */

.buttonBlue {
  background: #48a14d;
  text-shadow: 1px 1px 0 rgba(39, 110, 204, 0.5);
}

.buttonBlue:hover {
  background: #357bd8;
}

/* Ripples container */

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

/* Ripples circle */

.ripplesCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
  animation: ripples 0.4s ease-in;
}

/* Ripples animation */

@keyframes ripples {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  /* background-color: red; */
  color: white;
  text-align: center;
}

footer p {
  color: #888;
  font-size: 13px;
  letter-spacing: 0.4px;
}

footer a {
  color: #48a14d;
  text-decoration: none;
  transition: all 0.2s ease;
}

footer a:hover {
  color: #666;
  text-decoration: underline;
}

footer img {
  width: 80px;
  transition: all 0.2s ease;
}

footer img:hover {
  opacity: 0.83;
}

footer img:focus,
footer a:focus {
  outline: none;
}
.bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(
    -60deg,
    rgb(255, 255, 255) 50%,
    rgb(225, 221, 221) 50%
  );
  bottom: 0;
  left: -50%;
  opacity: 0.1;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}

.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.bg3 {
  animation-duration: 5s;
}

.content {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.25em;
  box-shadow: 0 0 0.25em rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  left: 50%;
  padding: 10vmin;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  font-family: monospace;
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}

footer p {
  color: rgb(43, 42, 42);
}

footer p a {
  color: rgb(0, 152, 33);
  text-decoration: none;
}

footer p a:hover {
  color: rgb(0, 152, 33);

  text-decoration: none;
}

@media (max-width: 600px) {
  hgroup {
    margin-top: -10px;
  }
  body {
    background-position: center;
    background-size: auto !important;
  }
  footer {
    margin-top: 300px;
  }

  form {
    margin-top: -10px;
    width: 100%;
    height: 75vh;
  }

  h3 {
    display: none;
  }
}
