#loader {
	position: relative;
	top: 50%;
	left: 50%;
	margin: -20px 0 20px -40px;
	width: 150px;
	height: 150px;
	border: 16px solid white;
	border-radius: 50%;
	border-top: 16px solid #FF5A0D;
	width: 80px;
	height: 80px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
	overflow-y: scroll;
}

body {
    font-family: 'Titillium Web', sans-serif;
    background: #CFCEC7;
}

/*Sign Up & Log In*/
a {
  text-decoration:none;
  color: #ffffff;
  transition:.5s ease;
}

.form {
  background:#262626;
  padding: 40px;
  max-width:600px;
  margin:40px auto;
  border-radius:10px;
  /*box-shadow:0 4px 10px 4px rgba($form-bg,.3);*/
}

.tab-group {
  list-style:none;
  padding:0;
  margin:0 0 80px 0;
}

 li a {
    text-transform:uppercase;
    letter-spacing:.1em;
    display:block;
    text-decoration:none;
    padding:15px;
    background:#E8520C;
    font-size:20px;
    float:left;
    width:50%;
    text-align:center;
    cursor:pointer;
    transition:.5s ease;
}

li a:hover {
      background:#FF9200;
    }
.active a {
    background:#FF5A0D;
  }

.tab-content > div:last-child {
  display:none;
}

h1 {
  text-align:center;
  color:white;
  margin:0px 0px 40px;
}

label {
  position:absolute;
  transform:translateY(6px);
  left:13px;
  color:white;
  transition:all 0.25s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  font-size:22px;
}
  .req {
  	margin:2px;
  	color:#FF5A0D;
  }

label.active {
  transform:translateY(50px);
  left:2px;
  font-size:14px;
}
  .req {
    opacity:0;
  }

label.highlight {
	color:white;
}

input, textarea {
  font-size:22px;
  display:block;
  width:100%;
  height:100%;
  padding:5px 10px;
  background:none;
  background-image:none;
  border:1px solid white;
  color:white;
  border-radius:0;
  transition:border-color .25s ease, box-shadow .25s ease;
}
  input, textarea:focus {
		outline:0;
		border-color:white;
  }

/* For later use for animation
#signup, #login {
	transition: opacity 2s linear, margin-top 2s step-start, z-index 2s step-start;
}
.hidden {
  opacity: 0;
  z-index: -5;
  transition-timing-function: linear, step-end, step-end;
}
*/

textarea {
  border:2px solid white;
  resize: vertical;
}

.field-wrap {
  position:relative;
  margin-bottom:40px;
}

.button {
  border:0;
  outline:none;
  border-radius:0;
  padding:15px 0;
  font-size:2rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  background: #E3E2DB;
  transition:all.5s ease;
  -webkit-appearance: none;
	color: black;
}
.button:hover {
    background: #FF9200;
    color: white;
}

.button-block {
  display:block;
  width:100%;
}

.forgot {
  margin-top:-20px;
  text-align:right;
}
