@import url(http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic);

:root {
  --main-color: #50B2D0;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 150%;
  color: #333;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 40px 0;
}

a {
  color: var(--main-color);
}

.left {
  float: left;
}
.right {
  float: right;
}
.half {
  width: 48%;
}

@media(max-width:500px) {
  .left, .right {
    float: none;
  }
  .half {
    width: 100%;
  }
}

.admin-nav {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.clear {
  display: block;
  width: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  clear: both;
}
.button {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  background-color: #ccc;
  border: none;
}
.button:hover {
  color: #fff;
  text-shadow: 0 0 3px #fff;
  box-shadow: 0 0 3px #fff;
  background-color: var(--main-color);
}
.button.small {
  font-size: 80%;
  padding: 5px 10px;
}

#page {
  max-width: 600px;
  margin: 100px auto 100px auto;
}
#header {

}
#logo {
  width: auto;
  height: auto;
  margin-bottom: 20px;
  max-width: 250px;
  max-height: 250px;
  min-width: 200px;
}
#content {
  padding-top: 20px;
}

input[type=text] {
  font-size: 16px;
}

.login-form input {
  font-size: 16px;
  display: block;
  margin: 5px auto;
  width: 100%;
  /* max-width: 400px; */
  box-sizing: border-box;
}
.login-form .input-text {
  padding: 10px;
}
.login-form .button {
  text-transform: uppercase;
}

.user {
  position: relative;
  color: #333;
  display: block;
  padding: 20px;
  margin: 20px 0 0 0;
  background-color: #eee;
}
.user h2 {
  margin: 0 0 10px 0;
}
.link.left {
  float: left;
}
.link.right {
  float: right;
}

.nav {
  text-align: center;
}

label.edit-text {
  display: block;
  position: relative;
  background-color: #fff;
  margin-bottom: 5px;
}
label.edit-text span {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  color: #ccc;
  font-style: italic;
  font-size: 11px;
  line-height: 30px;
  text-align: right;
  padding-right: 10px;
  z-index: 0;
}

input.edit-text {
  display: block;
  padding: 8px;
  box-sizing: border-box;
  border: none;
  width: 100%;
  z-index: 1;
  background: transparent;
}

div.message {
  color: #fff;
  text-align: center;
  display: block;
  padding: 20px;
  background-color: var(--main-color);
  margin-bottom: 20px;
}
