@import url("https://fonts.googleapis.com/css?family=Lato");

.tabsy {
  width: 100%;
  float: none;
  list-style: none;
  position: relative;
  text-align: left;
}

.tabsy li {
  float: left;
  display: block;
  width: 50%;
}

.tabsy input[type="radio"] {
  position: absolute;
  top: 0;
  left: -9999px;
}

.tabsy label {
  display: block;
  padding: 14px 21px;
  border-radius: 2px 2px 0 0;
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
  background: #616161;
  color: rgb(255, 255, 255);
  cursor: pointer;
  position: relative;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 5px 5px 0px 0px;
}

.tabsy label:hover {
  background: #797979;
  color: #363636;
}

.tabsy .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  width: 100%;
  font-size: 17px;
  line-height: 35px;
  position: absolute;
  top: 53px;
  left: 0;
  background: #61BCE9;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(37, 37, 37, 0.157);
}

.tabsy [id^="tab"]:checked + label {
  top: 0;
  background: #61BCE9;
  color: white;
  z-index: 9999
}

.tabsy [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}

p.link {
  clear: both;
  margin: 380px 0 0 15px;
}

p.link a {
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  margin: 0 5px;
  background-color: #612e76;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

p.link a:hover {
  background-color: #522764;
}

.real-content {
  margin: 15px 0px 15px 15px;
  border-radius: 5px;
}

.uppercase {
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  background: transparent;
  color: inherit;
  font: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  transition: all 200ms ease-in;
  cursor: pointer;
}

.btn--primary {
  background: #414141;
  color: #fff;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
  border-radius: 2px;
  padding: 12px 36px;
  margin-top: 10px;
  margin-left: 28% !important;
}

.btn--primary:hover {
  background: rgb(87, 87, 87);
}

.btn--primary:active {
  background: #525252;
  box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, .2);
}

.btn--inside {
  margin-left: -96px;
}

.form__field {
  width: 95%;
  background: #fff;
  color: #363636;
  font: inherit;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .1);
  border: 0;
  outline: 0;
  margin-bottom: -50px;
}

.copyright {
  color: #363636;
  padding-left: 25%;
  font-size: 12px!important
}

.forgot_pw {
  color: #333333;
  margin-right: 20px;
}

@media only screen and (max-width: 1280px) {

  .tabsy label {
    font-size: 17px;
  }

  .tabsy .tab-content {
    font-size: 17px;
  }
}