/*custom font*/
@import url('https://fonts.googleapis.com/css?family=Roboto Condensed&display=swap');

/*basic reset*/
* {margin: 0; padding: 0;}

html {
	height: 100%;
	/*Image only BG fallback*/
	
	/*background = gradient + image pattern combo*/
	background-color: #602020;
	background-image: linear-gradient(19deg, #806060 0%, #602020 100%);
}

body {
	font-family: "Roboto Condensed", sans-serif;
}
.box {
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: url('../imgs/logo-color-tbg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.25;
}
.inner-box {
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 1.0;
}
/*form styles*/
#msform {
	width: 400px;
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background-color: white;
	background-color: rgba(255, 255, 255, 0.25);
	border: 0 none;
	border-radius: 24px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
.textbox1, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 24px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
	color: #2C3E50;
	font-size: 13px;
}
#password {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 24px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
	color: #2C3E50;
	font-size: 13px;
}
/*buttons*/
#msform .action-button {
	width: 100px;
	background-color: #602020;
	background-image: linear-gradient(19deg, #806060 0%, #602020 100%);
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 18px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	/* box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60; */
	opacity: 0.6;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #202020;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 10px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background-color: #602020;
	background-image: linear-gradient(19deg, #b09090 0%, #906060 100%);
	color: white;
}

 /* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden;
  width: 240px;
  background-color: #602020;
  background-image: linear-gradient(19deg, #401010 0%, #200000 100%);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -15px;

  /* Fade in tooltip */
  opacity: 0;
  transition-delay: 1.0s;
  transition-property: opacity;
  transition-duration: 2.0s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 15px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #401010 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
} 

meter {
    -webkit-appearance: none;
    -moz-appearance: none;
}

#password-strength-meter::-webkit-meter-bar {
	background-color: #000000;
	background-color: rgba(0,0,0,0.1);
	height: 5px;
	width: 240px;
	vertical-align: top;
}

#password-strength-meter {
	background-color: #000000;
	background-color: rgba(0,0,0,0.01);
	height: 5px;
	width: 240px;
	margin-top: -5px;
}

#password-strength-meter[value="1"]::-webkit-meter-optimum-value { background: red; }
#password-strength-meter[value="2"]::-webkit-meter-optimum-value { background: yellow; }
#password-strength-meter[value="3"]::-webkit-meter-optimum-value { background: orange; }
#password-strength-meter[value="4"]::-webkit-meter-optimum-value { background: green; }

#password-strength-meter[value="1"]::-moz-meter-bar { background: red; }
#password-strength-meter[value="2"]::-moz-meter-bar { background: yellow; }
#password-strength-meter[value="3"]::-moz-meter-bar { background: orange; }
#password-strength-meter[value="4"]::-moz-meter-bar { background: green; }

#password-strength-text {
    line-height: 12px;
}
.feedback {
	color: #000000;
	font-size: 11px;
	font-family: "Roboto Condensed", sans-serif;
	margin-top: 0;
}

/* .roundedCheckbox */
.roundedCheckbox {
  width: calc(100% - 6px);
  height: 28px;
  left: 3px;
  position: relative;
  margin-bottom: 10px;
  background: #fcfff4;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(40%, #f8f8f8), to(#f0f0f0));
  background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 40%, #f0f0f0 100%);
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.roundedCheckbox label {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 4px;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(#222222), to(#45484d));
  background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
}
.roundedCheckbox label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: 4px;
  border: 3px solid #eeeeee;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.roundedCheckbox label:hover::after {
  opacity: 0.3;
}
.roundedCheckbox input[type=checkbox] {
  visibility: hidden;
}
.roundedCheckbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}

#rcbText {
	color: #000000;
	font-size: 12px;
	font-family: "Roboto Condensed", sans-serif;
	position: absolute;
	z-index: 1;
	left: 70px;
	margin-top: 7px;
}

/* end .roundedCheckbox */

