* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font: 16px Helvetica;
  background: #262626;
}

section {
  width: 275px;
  background: #ecf0f1;
  padding: 0 30px 30px 30px;
  margin: 60px auto;
  text-align: center;
  border-radius: 5px;
}

span {
  display: block;
  position: relative;
  margin: 0px auto;
  top: -40px;
  height:200px;
  width:200px;
  background:url(img/Logo.png)no-repeat;;
  background-color:#fff;
  background-position:22px;
  background-size:80%;
  border-radius:20%;
  box-shadow: 1px 1px 2px rgba(0,0,0,.3);
}

h1 {
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 30px;
}

input {
  width: 100%;
  background: #bdc3c7;
  border: none;
  height: 30px;
  margin-bottom: 15px;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  color: #7f8c8d;
}

input:focus {
  outline: none;
}

input[type="Submit"] {
  width: 100%;
  height: 30px;
  border: none;
  background: #FF6237;
  color: #ecf0f1;
  font-weight: 100;
  font-weight:bold;
  margin-bottom: 15px;
  border-radius: 5px;
  transition: all ease-in-out .2s;
}

button:focus {
  outline: none;
}

button:hover {
  background: #2980b9;
}

h2 {
  font-size: .75em;
}

a {
  color: #FF6237;
  text-decoration: none;
  transition: all ease-in-out .2s;
}

a:hover {
  color: #c0392b;
}

