* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

body {
  background-image: url("images/greenworld.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #999;
  font: 400 16px/1.5em sans-serif;
  margin: 0;
}

h3 {
  margin: 0;
}

h2 {
  margin: 0 auto;
  margin-bottom: 10px;
  color: black;
}

a {
  color: #999;
  text-decoration: none;
}

a:hover {
  color: #088A29;
}

fieldset {
  border: none;
  margin: 0;
}

input {
  border: none;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  -webkit-appearance: none;
}

input:focus {
  outline: none;
}

input[type="submit"] {
  cursor: pointer;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: ' ';
  display: table;
}
.clearfix:after {
  clear: both;
}

.container {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* ---------- LOGIN-FORM ---------- */
#login-form {
  width: 300px;
  margin: 0 auto;
  }

#login-form h3 {
  background-color: #088A29;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 14px;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
}

#login-form fieldset {
  background: #F2F2F2;
  border-radius: 0 0 5px 5px;
  padding: 20px;
}

#login-form fieldset:before {
  background-color: #fff;
  content: "";
  height: 8px;
  left: 50%;
  margin: -4px 0 0 -4px;
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
}

#login-form input {
  font-size: 14px;
}

#login-form input[type="email"],
#login-form input[type="password"],
#login-form input[type="date"],
#login-form input[type="text"] {
  border: 1px solid #dcdcdc;
  padding: 12px 10px;
  margin: 0 auto;
  width: 100%;
}

#login-form input[type="email"] {
  border-radius: 3px 3px 0 0;
}

#login-form input[type="text"] {
  border-radius: 3px 3px 0 0;
}

#login-form input[type="password"] {
  border-top: none;
  border-radius: 0px 0px 3px 3px;
}

#login-form input[type="checkbox"] {
  margin-top: 5px;
  height: 15px;
  width: 15px;
  cursor: pointer;
  border: 1px solid grey;
}
#login-form input[type="checkbox"]:checked{
	background-image: url(images/check.png);
	background-position: center;
}

#login-form input[type="button"] {
  background: #088A29;
  border-radius: 3px;
  color: #fff;
  float: right;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
  padding: 12px 20px;
}

#login-form input[type="submit"]:hover {
  background: #B40404;
}

#login-form footer {
  font-size: 12px;
  margin-top: 16px;
}

.info {
  background: #e5e5e5;
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  margin: 0 10px 0 0;
  text-align: center;
  width: 20px;
}	

#alert{
	position: fixed;
    height: auto;
    top: 50%;
    margin-top: -100px;
    width: 600px;
    left: 50%;
	overflow: auto;
    margin-left: -300px;
	visibility: hidden;
	background: #25292B;
	color: white;
	text-align: left;
	border: 4px solid #25292B;
	padding: 5px;
	border-radius: 5px;
	}
	#alert .button{
	  background: #088A29;
	  border-radius: 3px;
	  color: #fff;
	  cursor: pointer;
	  font-weight: bold;
	  margin-top: 20px;
	  padding: 12px 20px;
	  margin-top: 10px;
	}