@charset "UTF-8";
/**
 * ログインページ専用スタイル
 * 
 * @package CustomTankyuTheme
 * @since 1.0.0
 */
body.login {
  background: #f3f3f3;
  font-family: "Noto Sans JP", sans-serif;
}
body.login #login h1 a {
  background-image: url("../images/login-logo.png") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 300px !important;
  height: 80px !important;
  margin: 0 auto 20px !important;
}
body.login #login {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 20px;
}
body.login #login form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
}
body.login #login form .input {
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}
body.login #login form .input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}
body.login #login form .button-primary {
  background: #667eea;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
body.login #login form .button-primary:hover {
  transform: translateY(-2px);
  background: #333;
}
body.login #login form .button-primary:active {
  transform: translateY(0);
}
body.login #login label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}
body.login #login .forgetmenot {
  margin: 20px 0;
}
body.login #login .forgetmenot input[type=checkbox] {
  margin-right: 8px;
  transform: scale(1.2);
}
body.login #login .forgetmenot label {
  display: inline;
  font-weight: 400;
  color: #666;
}
body.login #login #nav {
  text-align: center;
  margin-top: 20px;
}
body.login #login #nav a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
body.login #login #nav a:hover {
  color: #764ba2;
  text-decoration: underline;
}
body.login #login #backtoblog {
  text-align: center;
  margin-top: 20px;
}
body.login #login #backtoblog a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
body.login #login #backtoblog a:hover {
  color: #764ba2;
  text-decoration: underline;
}
body.login .message {
  background: rgba(236, 169, 81, 0.2);
  border: 1px solid rgba(236, 127, 81, 0.2);
  border-radius: 8px;
  color: #721c24;
  padding: 12px 16px;
  margin-bottom: 20px;
  text-align: center;
}
body.login .message.success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  color: #155724;
}
body.login .message.info {
  background: rgba(23, 162, 184, 0.1);
  border: 1px solid rgba(23, 162, 184, 0.2);
  color: #0c5460;
}

@media (max-width: 768px) {
  body.login #login {
    padding: 20px;
  }
  body.login #login form {
    padding: 30px 20px;
  }
  body.login #login #login h1 a {
    width: 250px !important;
    height: 60px !important;
  }
}
@media (max-width: 480px) {
  body.login #login {
    padding: 10px;
  }
  body.login #login form {
    padding: 25px 15px;
  }
  body.login #login #login h1 a {
    width: 200px !important;
    height: 50px !important;
  }
}

/*# sourceMappingURL=login.css.map */
