/** Common */
body {
  margin: 0;
  padding: 0;
  background: #EEEEEE;
  font-family: "YuGothic", "Yu Gothic", "Meiryo", "ヒラギノ角ゴ", "sans-serif";
}

a {
  transition: color 0.2s;
}

a:hover {
  transition: background-color 0.3s;
}

p {
  font-size: 14px;
}

p.comment {
  font-size: 12px;
}

p.error {
  color: #FF3333;
}

/** Parts */
.button {
  width: 150px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  outline: none;
  background-color: #3498db;
  color: #fff;
  cursor: pointer;
  border: 0px;
}

.button:hover {
  background-color: #59b1eb;
}

.button:focus {
  background-color: #59b1eb;
}

.button::-moz-focus-inner {
  border: 0px;
}

.button:disabled {
  background-image: none;
  background-color: #ccc;
  border-color: #ccc;
  cursor: default;
}

/** Login Page */
#auth-form {
  width: 400px;
  margin: 30px auto;
  padding: 20px;
  background: #f5f5f5;
}

.form-title {
  text-align: center;
  font-size: 20px;
}

.form-name {
  font-size: 16px;
}

.form-text {
  margin-bottom: 20px;
}

input[type="email"], input[type="password"], input[type="text"] {
  width: 92%;
  padding: 8px;
  font-size: 16px;
}

.submit {
  text-align: center;
}

.footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
}

.footer ul {
  padding: 5px 0 0;
}

.footer ul li {
  display: inline;
  margin-right: 1em;
}

.footer a {
  color: #3f51b5;
  text-decoration: none;
}

.footer a:hover {
  background-color: #3f51b538;
}

.footer p {
  margin: -6px 0 0;
}