/* Start custom CSS for shortcode, class: .elementor-element-9c275cd *//* ====== MUN Register Form Styling ====== */
.mun-form {
    max-width: 420px;
    margin: 60px auto;
    background: #1e1e1e;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.mun-form h2 {
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.mun-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mun-form input[type="text"],
.mun-form input[type="email"],
.mun-form input[type="password"] {
    background: #2a2a2a;
    border: 1px solid #555;
    border-radius: 10px;
    color: #fff;
    padding: 12px 15px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.mun-form input:focus {
    border-color: #888;
    background: #333;
    box-shadow: 0 0 6px rgba(255,255,255,0.15);
}

.mun-form button {
    background: linear-gradient(135deg, #444, #111);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mun-form button:hover {
    background: linear-gradient(135deg, #666, #222);
    transform: scale(1.03);
}

.mun-success, .mun-error {
    margin: 20px auto;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    width: fit-content;
}

.mun-success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.mun-error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* Responsive */
@media (max-width: 480px) {
    .mun-form {
        padding: 25px;
        margin: 30px 15px;
    }
}/* End custom CSS */
/* Start custom CSS *//* ⚫⚪ Improved Register Page */
.register-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f2f2f2;
  padding: 30px;
}

/* Register Form Box */
.register-form {
  background: #fff;
  padding: 40px 35px;
  border-radius: 14px;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 450px;
  animation: fadeIn 0.5s ease-out;
}

/* Title */
.register-form h2 {
  font-size: 22px;
  color: #111;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

/* Inputs */
.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  background: #fafafa;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #111;
  font-size: 15px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  outline: none;
}
.register-form input:focus {
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* Labels */
.register-form label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  display: block;
}

/* Register Button */
.register-form button {
  width: 100%;
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.register-form button:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Footer Link */
.register-form .form-footer {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: #555;
}
.register-form .form-footer a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}
.register-form .form-footer a:hover {
  text-decoration: underline;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */