body { background: #f2f2f2; }

ol, ul { 
  margin: 0 auto;
  list-style: none; }

/* Refactorable */

.table {
  display: table;
  width: 100%; }
  

/* --- Header --- */

header {
  width: 100%; 
  background: white;
  padding: 1em 0; }
  
#logo { 
  width: 80%;
  display: block; 
  }
  
@media (min-width : 740px) { 
	#logo { 
	  width: 50%;
	  } 
  }

#logo img { 
  width: 100%;  
  max-height: 50px; 
  }  
  

/* ------- Form Elements ------- */

form ol li { padding-bottom: .25em; }

input, 
select, 
textarea {
  width: 100%;  
  padding: .7em;
  font-size: 1em;  
  border: 1px solid #d2d2d2;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  font-style: normal;
  line-height: 1;
  font-weight: 300;
  color: #5e5e5e; 
  -webkit-border-radius: 0px; 
  transition:         all .3s ease-in-out;    
  -webkit-transition: all .3s ease-in-out;  
  -moz-transition:    all .3s ease-in-out;  
  -o-transition:      all .3s ease-in-out;  
  -ms-transition:     all .3s ease-in-out;   
  }
  
select { 
  padding: .45em .35em;
  color: #9e9e9e;
  }
  
input:-moz-placeholder     { opacity: .6; }
input::-moz-placeholder    { opacity: .6; }
select:-moz-placeholder    { opacity: .6; }
select::-moz-placeholder   { opacity: .6; }
textarea:-moz-placeholder  { opacity: .6; }
textarea::-moz-placeholder { opacity: .6; }

input:hover,
select:hover,
textarea:hover {
  border: 1px solid #9f9f9f; 
  }  
  
input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border: 1px solid #9f9f9f;  
  color: #000; 
  }  
   
textarea { min-height: 10em; }  

input[type="checkbox"],
input[type="radio"] { 
  display: inline-block;
  width: auto;
  margin: 0 auto; 
  float: left;
  }
  
input[type="checkbox"] { -webkit-appearance: checkbox; }
input[type="radio"] { -webkit-appearance: radio; }

.readonly input,
.readonly input:hover {
  background: #fff;
  color: #929292;
  cursor: auto;
  border: 1px solid #e3e3e3; 
  }


  
/* ------- Checkbox ------- */

.checkbox {
  padding: .25em 0 .5em 0; 
  }

.checkbox label {
  width: auto;
  padding-left: .4em;
  display: inline-block;
  text-transform: none;
  font-weight: 300;
  float: none;
  cursor: pointer; 
  line-height: 1; 
  max-width: 90%;
  }
  
/* ------- Buttons ------- */

.button {
	margin-top: .5em; 
	}
  
.button input { 
	width: auto; 
	background: #6b6b6b;
	color: white;
	text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
	border: none;
	padding: .5em 1em;
	transition:         all .25s ease-in-out;    
  -webkit-transition: all .25s ease-in-out;  
  -moz-transition:    all .25s ease-in-out;  
  -o-transition:      all .25s ease-in-out;  
  -ms-transition:     all .25s ease-in-out; 
	}  
	
.button input:hover,
.button input:focus { 
	background: #005dab;
	color: white;
	}  

.button input:active  { 
	background: #00a950;
	}    
  
  
/* Password Strength Meter */

.password-strength {
	position: relative;
	}
	
.password-strength-box {
  position: absolute; 
  top: .2em;
  right: .2em;
  width: 30%;
  }
  
@media (min-width : 740px) { 
	.password-strength-box {
	  width: 25%;
	  }
  }
  
.password-strength-label {
  position: absolute; 
  top: .35em;
  right: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  font-size: .7em;
	font-weight: 400;
	color: #6b6b6b;
  }
  
#password-strength-text {
  font-weight: 700;
  line-height: 1;
  display: block;
  font-size: 170%;
  }
  
meter {
    /* Reset the default appearance */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
            
    margin: auto;
    width: 100%;
    height: 2.55em;
    
    /* Applicable only to Firefox */
    background: none;
    background-color: rgba(0,0,0,0.1);
}

meter::-webkit-meter-bar {
    background: none;
    background-color: rgba(0,0,0,0.1);
}

meter[value="1"]::-webkit-meter-optimum-value { background: red; }
meter[value="2"]::-webkit-meter-optimum-value { background: yellow; }
meter[value="3"]::-webkit-meter-optimum-value { background: orange; }
meter[value="4"]::-webkit-meter-optimum-value { background: #00da0a; }

meter[value="1"]::-moz-meter-bar { background: red; }
meter[value="2"]::-moz-meter-bar { background: yellow; }
meter[value="3"]::-moz-meter-bar { background: orange; }
meter[value="4"]::-moz-meter-bar { background: #00da0a; }
	
  
  


