*{
  box-sizing: border-box;
  margin:0px;
  padding:0px;
}

.form {
  padding: 20px;
  max-width: 383px;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
  transition: .5s ease;
  background-color: rgba(0,0,0,0.7);
  margin-right: 20px;
  margin-left: 20px;
  float: right;
}

.form:hover {
	box-shadow: 0px 0px 40px 16px white;
	}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 5px 0;
}
.tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 10px;
  background: #000;
  color: #fff;
  font-size: 20px;
  float: left;
  width: 50%;
  text-align: center;
  cursor: pointer;
  transition: .5s ease;
}
.tab-group li a:hover {
  background: #00FFFF;
  color: black;
}
.tab-group .active a {
  background: #0047AB;
  color: white;
}

.tab-content > div:last-child {
  display: none;
}

h2 {
  text-align: center;
  color: #fff;
  font-weight: 500;
  margin: 0 0 10px;
}

h5 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 3px;
}

h6 {
  color: #fff;
  font-weight: 300;
  margin-top: 3px;
  margin-bottom: 3px;
}

.input-group {
  margin-bottom: 2px;
}

.button {
  border: 2px solid white;
  outline: none;
  border-radius: 2px;
  padding: 5px 0;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: #0047AB;
  color: white;
  transition: all 0.5s ease;
  margin-top: 10px;
}
.button:hover, .button:focus {
  background: #00FFFF;
  color: #000;
  border: 2px solid red;
}

.button-block {
  display: block;
  width: 100%;
}

input {
  margin-bottom: 5px;
}

.forgot a {
  font-size: 16px;
  text-decoration: none;
  color: white;
}

.forgot a:hover {
  color: #ffc107;
}

#title {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}
