body {
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}


header {
  display: block;
  overflow: hidden;
  height: 60px;
  background-color: #425767;
}


header a {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
}


header a:hover {
  background-color: #f85d13;
  color: #f2f2f2;
}

header a p {
  float: left;
  margin: 10px;
  margin-left: 0;
  line-height: 40px;
}

header a img {
  float:left;
  width: 40px;
  margin: 10px;
}

nav {
  display: block;
  background-color: white;
  height: 90px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}

nav #logo {
  margin-left: 20px;
  float: left;
}

nav #logo a {
  cursor: pointer;
}

nav .title, nav .signup {
  float: right;
  margin: 20px 60px 20px 20px;
  line-height: 60px;
  font-size: 24px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;

  text-shadow: 1px 1px 1px #aaa;
}

nav .title {
  color: #4a4a4a;
}

nav .signup {
  color: #f85d13;
}

#content {
  background-color: #f2f2f2;
  border-bottom: 1px solid #ddd;
  min-width: 1000px;
  padding: 40px;
}

#content.background-cover {
  padding: 40px 0 0 0;
}



#form-sign-in, #form-sign-up {
  background-color: #f2efe8;
  margin: 0 auto;
  padding: 20px;
  border: #f85d13 solid 12px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

#form-sign-up {
  width: 800px;
}

#form-sign-in {
  width: 500px;
}

#logo img{
  padding-top: 30px;
  width: 155px;
  float: left;
  vertical-align: baseline;
  outline: none;
  appearance: none;
  max-width: 100%!important;
  height: auto!important;
}



footer {
  background-color: #4a4a4a;
  height: 60px;
  overflow: hidden;
  margin-top: 60px;
  clear: both;
}

a.button {
  font-size: 0.75rem;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  line-height: 12px;
  padding: 15px 40px;
  cursor: pointer;
  transition: all .25s ease-out;
  color: #000;
  background-color: white;
  border: 2px solid #000;
  text-decoration: none;
}

a.button:hover {
  color: #fff;
  border-color: #f85d13;
  background-color: #f85d13;
}


.info {
  font-size: 14px;
  color:#4a4a4a;
  display: block;
  margin: 20px;
}

.none {
  display: none;
}

.unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.clear {
  clear: both;
}