/* Main container styling */
.swpm-post-not-logged-in-msg {
  background-color: #f2f4f7;
  border-left: 4px solid #2a4365;
  padding: 24px;
  max-width: 700px;
  margin: 40px auto;
  border-radius: 8px;
  font-family: 'Segoe UI', 'Inter', sans-serif;
  font-size: 17px;
  color: #1a1a1a;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Ensure message appears as block element */
.swpm-post-not-logged-in-msg p {
  margin-bottom: 20px;
}

/* Wrap buttons in a flex container */
.swpm-post-not-logged-in-msg a {
  display: inline-block;
  background-color: #2a4365;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 0 10px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

/* Align buttons side-by-side using flexbox */
.swpm-post-not-logged-in-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Container specifically for the buttons */
.swpm-post-not-logged-in-msg .button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 15px;
}


/* --- Sky Ranch Login Form Styling --- 
 * /* Container styling */
.wpum-login-form {
  max-width: 400px;
  margin: 60px auto;
  padding: 30px;
  background: #f8f9fb;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', 'Inter', sans-serif;
}

/* Headline styling */
.page-header .entry-title {
  text-align: center;
  color: #2a4365;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Input fields */
.wpum-login-form input[type="text"],
.wpum-login-form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

/* Checkbox styling */
.wpum-login-form input[type="checkbox"] {
  margin-right: 6px;
}

/* Login button */
.wpum-login-form input[type="submit"],
.wpum-login-form .button {
  background-color: #2a4365;
  color: white !important;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.wpum-login-form input[type="submit"]:hover,
.wpum-login-form .button:hover {
  background-color: #1e2e48;
}

/* Signup + Password reset links */
.wpum-action-links {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}

.wpum-action-links a {
  color: #2a4365;
  text-decoration: underline;
  font-weight: 500;
}

.wpum-action-links a:hover {
  text-decoration: none;
}


