/* ================================
   会員登録フォーム（Register Form）
================================== */
.property-register-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px 30px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
  box-sizing: border-box;
}

.property-register-form p {
  margin-bottom: 15px;
}

.property-register-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.property-register-form input[type="text"],
.property-register-form input[type="email"],
.property-register-form input[type="password"] {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.property-register-form input[type="submit"] {
  background-color: #0073aa;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.property-register-form input[type="submit"]:hover {
  background-color: #005077;
}


/* ================================
   ログインフォーム（Login Form）
================================== */
.property-login-form-wrapper {
  max-width: 400px;
  margin: 60px auto;
  padding: 30px;
  background-color: #fafafa;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
}

.property-login-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

#property-login-form label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 15px;
}

#property-login-form input[type="text"],
#property-login-form input[type="email"],
#property-login-form input[type="password"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

#property-login-form input[type="checkbox"] {
  margin-right: 6px;
}

#property-login-form input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

#property-login-form input[type="submit"]:hover {
  background-color: #005a8c;
}

/* ================================
   エラーメッセージ表示
================================== */
.login-error {
  color: red;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}


/* ================================
   物件検索フォーム（Search Form）
================================== */
.property-search-form {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  font-family: 'Arial', sans-serif;
}

.property-search-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 15px;
}

.property-search-form input[type="text"],
.property-search-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.property-search-form input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.property-search-form input[type="submit"]:hover {
  background-color: #005a8c;
}


/* ================================
   会員プロフィール（Member Page）
================================== */
.property-profile {
  max-width: 720px;
  margin: 60px auto;
  padding: 30px;
  box-sizing: border-box;
}

.property-profile h2,
.property-profile h3 {
  text-align: center;
}

.property-profile ul {
  margin: 20px 0 30px;
  padding-left: 22px;
}

.property-profile-edit {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.property-profile-edit p {
  margin-bottom: 16px;
}

.property-profile-edit label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.property-profile .property-profile-edit input[type="text"],
.property-profile .property-profile-edit input[type="email"],
.property-profile .property-profile-edit input[type="password"],
.property-profile .property-profile-edit .regular-text {
  width: 100% !important;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.property-profile-edit input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.property-profile-edit input[type="submit"]:hover {
  background-color: #005a8c;
}
