@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
  font-family: 'Roboto';
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
}

html, body {
  text-align: center;

  
  

}


#top-level{
	background-color: #c0c0c0;
	height:100%;
}

.cont{
	background: url("images/registerbg.png");
	
}

.step-bar {
  text-transform: uppercase;
  color: white;
  font-size: 0.8em;
  margin-top: 40px;
}

.step-bar li{
  display: inline-block;
  position: relative;
  margin: 0px 30px; 
  width: 120px;
}

.step-bar .number{
  transition: background-color 0.1s linear, color 0.1s linear;
  display: inline-block;
  position: relative;
  color: #777;
  background-color: #fff; 
  width: 20px;
  padding: 8px 5px;
  margin-bottom: 4px;
  font-weight: 700;
  z-index: 1;
}
.step-bar ul{
	width: 1024px;
}
.step-bar .line {
  background-color: #fff;
  width: 200px;
  height: 5px;
  position: absolute;
  top: 15px;
  right: 60px;
  z-index: 0;
}

.step-bar .active {
  background-color: rgb(195,124,27);
  color: #fff;
}

.register-form {
  display: inline-block;
  background: #fff;
  padding: 20px 30px;
  width: 300px;
  text-align: center;
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.3);
  border-radius: 3px;
  position: relative;
}

.error {
  border: 1px solid #E57373;
  background-color: #FFEBEE;
}

.error-text {
  text-align: left;
  padding-left: 10px;
  font-size: 0.7em;
  color: #E57373;
}

h2 {
  margin: 75px 0;
  display: block;
  color: #777;
  font-size: 1.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 200;
}

.register-form h2 {
  font-size: 1em;
  color: #777;
  font-weight: 400;
  margin-bottom: 10px;
}

.register-form input {
  padding: 15px; 
  margin: 5px 0;
  width: 260px;
}

.register-form input::placeholder {
  color: #aaa;
}

.register-form input.error::placeholder {
  color: #555;
}

.button {
  display: inline-block;
  padding: 10px 40px;
  background-color:black;
  color: #fff;
  margin: 25px 0  10px 0;
  user-select: none;
  cursor: pointer;
  position: relative;
}

.button:hover {
  background-color: #00897B;
}

.disabled {
  background-color: #aaa; 
}

.disabled:hover {
  background-color: #aaa; 
  cursor: default
}

.account-setup, .finish-step, .user-details {
  transition: 1s all ease-in-out;
  display: inline-block;
  position: absolute;
}

.account-setup {
  left: calc(50% - 175px);
  
}

.finish-step, .user-details {
  left: 1400px;
}

.user-details{
  display: none;
}

.finish-step{
  display: none;
}

.line {
  transition: all 1s ease-in-out;
  background: linear-gradient(to right, black 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.line-active {
  background-position: left bottom;
}

label {
  display: block;
  text-align: left;
  font-size: 0.8em;
  padding-left: 5px;
  color: black;
}

input[type=checkbox]{
  display: none;
}

.accept-conditions {
  margin-top: 20px;
}

input::placeholder { 
  color: black;
}

label{
  font-size: 14px;
  text-align: center;
 black;
  text-shadow: .5px .5px .5px black;
}

@media(max-width: 600px) {
  .step-bar {
    display: none;
  }
}