::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html {
	overflow: -moz-scrollbars-vertical; 
    overflow-y: scroll;
	overflow-x: hidden;
}

body {
	background: #fff;
	background-image:url(../images/bg.jpg);
	background-repeat: no-repeat;
	background-position: center; 
  	background-size: cover;
	min-height:95vh;
	color: #333;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 14px;
}

button{
	cursor:pointer;
}

#welcome{
	padding:40px;
	
}
#welcome .nav-btn{
	width:80%;
	padding:22px 5px;
	margin:5px;
	font-size:22px;
}
#entered{
	padding-top:20px;
	display:none;
}
#entered .nav-btn{
	width:40%;
	padding:10px ;
	margin-bottom:-15px;
	font-size:16px;
}

#content {
	width:80%;
	margin:50px auto;
	margin-bottom:25px;
	padding:20px;
	background:rgba(150,150,150,0.6);
}

#content h1,#content h3,#content h4,#content h5,#content h6{
	color:#fff;	
}

#content h2{
	color:#ddd;	
	font-weight:400;
}


#content .title{
	padding-bottom:20px;
	border-bottom:5px #ddd solid;
}

#registration table{
	margin:40px auto;
	font-size:16px;
	width:75%;
}

#registration input[type=text], #registration textarea{
	width:100%;
	border:2px solid #ddd;
}


table tbody .head {
    background-color: #e7e7e7;
	font-size:18px;
	font-weight:bold;
	text-align:left;
}

table tbody .content {
    background-color: #fff;
	padding:15px;
}

table th {
    color: #4a4a4a;
}

table td{
	padding:12px;
}

#registration .desc{
	font-weight:600;
	white-space: nowrap;
	width:120px;
}

.checkbox {
  position: relative;
  margin: 0 1.5rem 0 1.5rem;
  cursor: pointer;
}

.checkbox:before {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 0;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #c2c2c2;
  border-radius:2px;
}
.checkbox:checked:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: .75rem;
  border-width:3.5px;
  border-color: #009688;
  border-top-style: none;
  border-right-style: none;
  border-radius:0;
}

.checkbox:after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  cursor: pointer;
}

.validation{
	margin-left:-20px;
	width:20px;
	color:#009688;
	opacity:0;
}
.validation-2{
	margin-left:10px;
	width:20px;
	color:#009688;
	opacity:0;
}
.validation-3{
	margin-left:-20px;
	vertical-align:25%;
	width:20px;
	color:#009688;
	opacity:0;
}
.validation.pass{
	opacity:1;
}
.validation-2.pass{
	opacity:1;
}
.validation-3.pass{
	opacity:1;
}

.g-recaptcha {
	display: inline-block;
	margin:-15px;
}

#submit {
	display:none;
}

#footer{
	color:white;
	font-size:15px;
	padding-bottom:30px;
}
@media screen and (max-width: 730px) {
  #content {
  	width:85%;
	margin:40px auto;
	margin-bottom:20px;
	padding:15px 10px;
  }
  #registration table{
	margin:30px auto;
	width:90%;
  }
  .checkbox:before {
  	top:0.5em;
  }
}

@media screen and (max-width: 530px) {
  body{
    overflow-x:hidden;
  }
  #content {
  	width:100%;
	margin:auto;
	margin-bottom:15px;
	padding:10px 0 0 0;
  }
  
  #content h3{
	padding:5px;
  }

  #content h2{
	padding:5px;
  }

  #content h1{
	padding:5px;
  }
  #registration{
  margin-top:30px;
  }
  #registration table{
	margin:2px auto;
	width:100%;
  }
  #registration .desc{
	white-space: normal;
  }
  table td{
	padding:12px 6px;
  }
  #registration input[type=text], #registration textarea{
	width:100%;
	border:2px solid #ddd;
	min-width: 100px;
  }
  .checkbox:before {
  	top:0.5em;
  }

}