/**
 * Findout Shortcodes スタイルシート
 */

/* 共通スタイル */
.error-message {
  color: #ff0000;
  margin-top: 10px;
  font-weight: bold;
}

/* ログインフォーム */
#login-form {
  max-width: 500px;
  margin: 0 auto;
}

.login-form-text-field {
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.text-field-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.email-btn {
  /* background-color: #0066cc; */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}

.email-btn:hover {
  background-color: #0055aa;
}

.forget-password {
  margin-bottom: 15px;
  text-align: right;
}

.forget-password a {
  /* color: #0066cc; */
  text-decoration: none;
}

.forget-password a:hover {
  text-decoration: underline;
}

/* 会員登録フォーム */
.registration-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.registration-form h1 {
  text-align: center;
  margin-bottom: 20px;
}

.form-section {
  margin-bottom: 30px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 4px;
  background-color: white;
}

.form-section h2 {
  margin-top: 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 15px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.submit-btn {
  /* background-color: #0066cc; */
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  display: block;
  margin: 0 auto;
}

.submit-btn:hover {
  background-color: #0055aa;
}

/* 会員限定コンテンツオーバーレイ */
.member-only-content {
  position: relative;
  margin-bottom: 20px;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.member-only-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 400px;
}

.member-only-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.member-only-buttons .button {
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.login-button {
  /* background-color: #0066cc; */
  color: white;
}

.register-button {
  background-color: #ff9900;
  color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .registration-form {
    padding: 15px;
  }

  .radio-group {
    flex-direction: column;
  }

  .member-only-message {
    width: 90%;
  }
}
