
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}


a {
  text-decoration: none;
  transition: 0.1s ease;
}
a:hover {
    color: radial-gradient(circle, rgba(255,255,255,1) 0%, #FFBA00 0%, #ffd45f 67%);
}

#registration_container{
  display: none;
}

.form {
    width: 95%;
    margin: 3rem auto;
    padding: 1rem;
    background: rgb(224, 224, 224);
    border-radius: 20px;
    justify-content: center;
    box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 15px;
  background-color: #ffe394;
  color: #000000;
  font-size: 20px;
  float: left;
  width: 50%;
  text-align: center;
  cursor: pointer;
  transition: 0.6s ease;
}
.tab-group li a:hover {
  background-color: #FFBA00;
    color: #000000;
}
.tab-group .active a {
  background-color: #FFBA00;
  color: #000000;
}

.tab-content > div:last-child {
  display: none;
}

h1 {
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  margin: 0 0 40px;
}

label {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  font-size: 18px;
}
label .req {
  margin: 2px;
  color: #1ab188;
}

label.active {
  transform: translateY(50px);
  left: 2px;
  font-size: 14px;
}
label.active .req {
  opacity: 0;
}

label.highlight {
  color: #ffffff;
}

input,
textarea {
  font-size: 22px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background: none;
  background-image: none;
  border: 1px solid #a0b3b0;
  color: #ffffff;
  border-radius: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
input:focus,
textarea:focus {
  outline: 0;
  border-color: #1ab188;
}

textarea {
  border: 2px solid #a0b3b0;
  resize: vertical;
}

.field-wrap {
  position: relative;
  margin-bottom: 40px;
}

.top-row:after {
  content: "";
  display: table;
  clear: both;
}
.top-row > div {
  float: left;
  width: 48%;
  margin-right: 4%;
}
.top-row > div:last-child {
  margin: 0;
}


.forgot {
    font-size: 1.2rem;
    text-align: center;
    color: black;
    margin-top: 1em;
}

.login__title{
    text-align: center;
}

/* ------------------------------------------------------------------------------------------ */
/* Media Querys */
/* ------------------------------------------------------------------------------------------ */

@media only screen and (min-width: 1024px) {
    .form{
      width: 70%;
    }
  }