body{
	text-align: center;
}
.login{
    padding: 30px;
    background-color: hsl(253, 20%, 8%);
    border: 1px solid hsla(44, 60%, 64%, .5);
    box-sizing: border-box;
    display: inline-block;
    width: 450px;
    margin: 30px auto 60px;
}
.login h3{
    color: hsl(44, 60%, 64%);
    margin: 3px 0 12px;
    text-align: center;
    font-size: 26px;
    font-weight: normal;
}
.login h4{
	text-align: left;
    hsla(0,0%,100%,.6);
    margin: 5px 0 8px 24px;
    font-size: 18px;
    font-weight: normal;
}
#conditions-display h4{
	text-align: center;
	font-size: 17px;
	font-weight: bold;
}
.login p{
    text-align: center;
}
form .alert{
    width: 100%;
    text-align: center;
    margin-top: 5px;
    color: hsl(44, 60%, 64%);
}
form .node{
    width: 100%;
    text-align: center;
    margin-top: 15px;
    color: hsla(0,0%,100%,.8);
}
.login input[type=text], .login input[type=password], .login input[type=email]{
    background-color: hsl(253, 20%, 3%);
    border: 1px solid hsla(0,0%,100%,.6);
    display: inline-block;
    width: 100%;
    color: #fff;
    padding: 0 8px;
    box-sizing: border-box;
    border-radius: 4px;
    height: 30px;
    line-height: 30px;
    margin-top: 0;
    transition: ease all .3s;
}
.login input[type=text]:hover, .login input[type=text]:focus, .login input[type=password]:hover, .login input[type=password]:focus, .login input[type=email]:hover, .login input[type=email]:focus{
    background-color: hsl(253, 20%, 90%);
    border: 1px solid hsl(253, 20%, 90%);
    color: #000;
}
.login #code-wrap{
    background-color: hsl(253, 20%, 25%);
    box-sizing: border-box;
    border-radius: 4px;
    width: 230px;
    margin: 10px auto 20px;
}
.login #code-wrap .code{
    background-color: hsl(253, 20%, 3%);
    border: none;
	letter-spacing: 12px;
    width: 150px;
    margin: 10px auto;
    height: 40px;
    line-height: 40px;
    color: hsla(0,0%,100%,.8);
    text-align: center;
    font-size: 25px;
	padding: 0 0 0 12px;
}
.login .y-code{
    color: hsla(0,0%,100%,.8);
    font-size: 22px;
}
.login h3 img{
    width: 22px;
}
.login label{
    margin-top: -5px;
    display: block;
    color: hsla(0,0%,100%,.6);
    font-size: 16px;
	text-align: left;
}
.fp{
    display: inline-block;
    margin-top: 5px;
    text-decoration: none;
    color: hsla(0,0%,100%,.7);
}
.fp:hover{
    color: hsla(0,0%,100%,1);
    text-decoration: underline;
}
.alert{
    color: hsl(5, 100%, 75%);
    text-shadow: 0 0 2px #000;
    line-height: 20px;
    margin: 0;
    padding: 3px 0;
    font-size: 16px;
    text-align: left;
}
.form-link{
    background-color: hsl(253, 20%, 5%);
    display: block;
    color: hsla(0,0%,100%,.7);
    width: 100%;
    padding: 6px 0;
    margin-top: 15px;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid hsla(44, 60%, 64%, .5);
    border-radius: 20px;
    text-decoration: none;
    transition: ease all .3s;
}
.form-link:Hover{
    color: hsla(0,0%,100%,1);
    border: 1px solid hsla(44, 60%, 64%, 1);
}
.login .submit{
    display: table;
    margin: 15px auto 0;
    background-color: hsl(44, 60%, 64%);
    color: hsl(253, 20%, 8%);
    border: 1px solid hsl(44, 60%, 64%);
    padding: 5px 9px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: ease all .2s;
}
.login .submit:hover{
    background-color: hsl(253, 20%, 3%);
    color: hsl(44, 60%, 64%);
}

#conditions-display{
	background-color: #000;
	color: #aaa;
	border: 1px solid hsla(0,0%,100%,.6);
	padding: 5px;
	box-sizing: border-box;
	height: 150px;
	overflow: auto;
	margin-bottom: 15px;
}
#conditions-display h4{
	margin: 6px auto;
	font-size: 15px;
}
#conditions-display h5{
	margin: 4px auto 4px 23px;
	text-align: left;
}
#conditions-display ul{
	padding-left: 23px;
	text-align: left;
	margin: 0;
	font-size: 14px;
}

/* checkbox */

/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	margin-bottom: 6px;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: hsl(44, 60%, 67%);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid #000;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#bot-img{
	border: 1px solid hsla(0,0%,100%,.6);
}
#is{
	font-size: 25px;
	margin: 4px 8px;
}
#check-number{
    background-color: hsl(253, 20%, 3%);
	width: 50px;
	margin-top: 6px;
	border: 1px solid hsla(0,0%,100%,.6);
	border-radius: 3px;
	height: 30px;
	font-weight: bold;
	padding: 3px;
	box-sizing: border-box;
}
#check-number:hover, #check-number:focus{
    background-color: hsl(253, 20%, 90%);
    border: 1px solid hsl(253, 20%, 90%);
    color: #000;
}
.fl{
	float: left;	
}

#country{
	display: none;
}
.select-selected{
    display: inline-block;
    width: 100%;
    color: #fff;
    padding: 0 8px;
    box-sizing: border-box;
    border-radius: 4px;
    height: 30px;
    line-height: 30px;
    margin-top: 0;
	font-size: 14px;
	text-align: left;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    position: relative;
    content: "";
    float: right;
	margin-top: 12px;
    border: 6px solid transparent;
    border-color: hsla(0,0%,100%,.6) transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent hsla(0,0%,100%,.6) transparent;
	margin-top: 6px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
	text-align: left;
	font-size: 14px;
    color: #ffffff;
    border: 1px solid transparent;
    border-color: hsla(0,0%,100%,.6);
    background-color: hsl(253, 20%, 3%);
	padding-left: 8px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    user-select: none;
	margin: 0;
}
.select-items div,.select-selected:first-child{
    border-color: hsla(0,0%,100%,.6) hsla(0,0%,100%,.6) transparent hsla(0,0%,100%,.6);
}

/*style items (options):*/
.select-items {
    position: relative;
    margin: -3px auto 0 -1px;
	max-height: 200px;
	overflow: auto;
    border: 1px solid transparent;
    border-color: transparent transparent hsla(0,0%,100%,.6) transparent;
    background-color: hsl(253, 20%, 3%);
    z-index: 99;
	width: 100%;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}
















