@charset "utf-8";

/* ### ログインページのカスタマイズ（ある程度は統一感を出したつもり…） ### */

/* 背景色の変更 */
body.login {
  background: #f9f9f9;
}

/* ロゴの変更 */
.login #login h1 a {
  width: 300px;
  height:100px;
  background: url(../img/login-logo.png) no-repeat 0 0;
}

/* 「パスワードをお忘れですか」の非表示 */
.login #nav { display: none; }

/* 「トップページに戻る」リンクの設定 */
#backtoblog a {
  color: #00b56c !important;
}
#backtoblog a:hover {
  text-decoration: underline !important;
}

/* ボタン、テキストボックスの設定 */
input#wp-submit {
  height: auto !important;
  box-shadow: none !important;
  text-shadow: none !important;
  background-color:#00b56c !important;
  color:#fff !important;
  text-decoration:none;
  text-align:center;
  padding:5px;
  border-radius:3px;
  border:#00b56c solid 1px !important;
  outline: 0;
}
input#wp-submit:hover {
  background-color:#2f2f2f !important;
  border:#2f2f2f solid 1px !important;
}
#user_login, #user_pass, #siteguard_captcha {
  padding:0.3em;
  outline:0;
  border:#2f2f2f solid 1px;
  border-radius:3px;
  box-shadow: none !important;
}
#rememberme {
  outline:0;
  box-shadow: none !important;
}
