body
{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background: #292929;
	background-image: linear-gradient(to bottom, #00bbff , #006eff);
}

.box
{
	width: 400px;
	padding: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #262626;
	text-align: center;
	border-radius: 10px;
}

.box h1
{
	color: white;
	text-transform: uppercase;
}

.box h3
{
	color: white;
	font-size: 15px;
}

.box input[type = "text"], .box input[type = "password"]
{
	border: 0;
	bacground: #262626;
	display: block;
	margin: 5px auto;
	text-align: center;
	padding: 14px 10px;
	width: 300px;
	outline: none;
	color: black;
	border-radius: 5px;
	transition: 0.25s;
}

.box input[type = "text"]:hover, .box input[type = "password"]:hover
{
	background-color: #4d9aff;
}

.box input[type = "submit"]
{
	border: 0;
	background: white;
	display: block;
	margin: 20px auto;
	text-align: center;
	border-radius: 5px;
	transition: 0.25s;
	width: 300px;
	height: 28px;
}

.box input[type = "submit"]:hover
{
	background-color: #4d9aff;
}

.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 18px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

* {box-sizing: border-box}
body {font-family: "Lato", sans-serif;}

/* Style the tab */
.tab {
  float: left;
  background-color: #262626;
  width: 15%;
  height: 100%;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: white;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #006fff;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #478eff;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  width: 85%;
  border-left: none;
  height: auto;
}

.classes {
  background-color: #262626;
  color: white;
  margin: 20px;
  padding: 20px;
  width: 115%;
}

.infoClass {
  background-color: #262626;
  color: white;
  margin: 20px;
  padding: 20px;
  width: 96%;
}