#wmp-social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 2rem;
}
#wmp-social-login-row {
    display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 2rem;
}

.wmp-social-card-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.wmp-social-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  border: 1px solid #c1c7d0 !important;
  border-radius: 6px !important;
  background: #fff!important;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow .2s, border-color .2s;
  outline: none !important;
}

.wmp-social-card:hover, .wmp-social-card:focus {
  border-color: #4bb543 !important;
}

.wmp-social-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  display: block;
  object-fit: contain;
}

.wmp-social-label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.appdownload{
	display: flex;
	justify-content: center;
  gap: 24px;
}
.appdownload img {
    width: 140px;
}
/* ─── FORCE POPPINS INSIDE OUR CONTAINER ───────────────────────────────── */
.wmp-auth-layout,
.wmp-auth-layout * {
  font-family: 'Poppins', sans-serif !important;
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ─── AUTH LAYOUT WRAPPER ───────────────────────────────────────────────── */
.wmp-auth-layout {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 100vh;
}

/* ─── LEFT PANEL (LOGO / TOGGLE / FORM) ─────────────────────────────────── */
.wmp-auth-main {
  width: 100%;
  display: flex;
  flex-direction: column;
}
/* Header */
.wmp-auth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.wmp-logo img,
.wmp-logo a {
  max-width: 120px !important;
  height: auto;
}
.wmp-auth-toggle {
    font-size: 13px;
}
.wmp-auth-toggle a {
  color: #4cb543;
  text-decoration: none;
  font-weight: 600;
}
.wmp-auth-toggle a:hover {
  color: #108080;
}
/* Form wrapper scrolls if too tall */
.wmp-form-wrap {
  padding: 2rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#wmp-signup-wrap,
#wmp-login-wrap {
  width: 450px;
}
.side-img {
    width: 250px;
}

/* ─── YOUR EXISTING FORM + BOUNCE + TOAST STYLES (unchanged) ───────────── */
/* Steps */
.step { display: none; }
.step.active { display: block; }
/* Headings */
.step h3, .loginactive h3 {
  font-size: 20px;
    text-align: left;
    margin-bottom: 1em;
    color: #000;
    font-weight: 700;
}
.step p, .loginactive p {
    font-size: 13px;
    text-align: left;
    margin-bottom: 1em;
    color: #555;
}
label.bounce-in {
    font-size: 12px;
}
/* Fields */
.field-bounce {
  position: relative;
  margin-bottom: 1em;
}
.field-bounce input {
    background: #fff;
    border: 1px solid #c1c7d0 !important;
    border-radius: 4px !important;
    color: #333;
    font-size: 0.8rem;
	line-height:25px;
}
.field-bounce input:focus {
  border-color: #00bdff;
  outline: #4bb543;
}
/* Radio pills */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-pill {
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s;
}
.radio-pill:hover    { background: #f2f2f2; }
.radio-pill input    { display: none; }
.custom-radio        { width: 20px; height: 20px; border:2px solid #777; border-radius:50%; margin-right:10px; position:relative; }
.custom-radio::before {
  content:"";
  position:absolute;
  width:10px; height:10px;
  background:#00bdff; border-radius:50%;
  top:3px; left:3px; opacity:0;
  transition: opacity .3s;
}
.radio-pill input:checked + .custom-radio::before {
  opacity:1;
}
/* Buttons */
button {
  width:100%;
  padding:13px;
  background:#00bdff;
  border:none;
  border-radius:4px;
  color:#fff;
  font-size:15px;
  font-weight:bold;
  margin-top:20px;
  cursor:pointer;
  transition: background .3s;
}
button:hover         { background: #0288d1; }
button:disabled      { opacity:0.6; cursor:not-allowed; }
/* Field messages */
.field-msg {
  display:block;
  font-size:10px;
  margin-top:4px;
}
.field-msg.error   { color: #e74c3c; }
.field-msg.success { color: #27ae60; }
/* Bounce-in */
.animate-field { opacity:0; }
@keyframes fadeBounce {
  0%   { opacity:0; transform: translateY(20px); }
  50%  { opacity:1; transform: translateY(-10px); }
  100% { opacity:1; transform: translateY(0); }
}
.bounce-in { animation: fadeBounce .5s ease forwards; }
/* Toast */
.wmp-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: .75em 1.25em;
  border-radius: 4px;
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  z-index: 9999;
}
.wmp-toast.visible   { transform: translateX(-50%) translateY(0); opacity:1; }
.wmp-toast-error     { background:#e74c3c; }
.wmp-toast-success   { background:#27ae60; }

/* ─── RIGHT PANEL (SIDE CONTENT) ────────────────────────────────────────── */
.wmp-auth-side {
  display: none;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}
/* signup panel = dark */
.wmp-side-signup {
  background: linear-gradient(45deg, #007b22, #00a32cd9);
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wmp-side-signup h2 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
}
.wmp-side-signup ul {
  list-style: disc inside;
  margin-top: 1rem;
}
.wmp-side-signup li {
  margin-bottom: .75rem;
}
.wmp-side-signup p,
.wmp-side-login p {
  text-align:center;
	font-size: 13px;
}
/* login panel = light */
.wmp-side-login {
  background: #f5f7fa;
  color: #333;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wmp-side-login h2 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
}
.wmp-side-login ul {
  list-style: disc inside;
  margin-top: 1rem;
}
.wmp-side-login li {
  margin-bottom: .75rem;
}

/* ─── RESPONSIVE BREAKPOINTS ───────────────────────────────────────────── */
@media (min-width: 768px) {
  .wmp-auth-main { width: 67%; }
  .wmp-auth-side { display: flex; width: 33%; }
}
@media (max-width: 767px) {
  .wmp-auth-main,
  .wmp-auth-side {
    width: 100%;
  }
  .wmp-auth-side {
    display: none;
  }
	.step h3 {
    font-size: 16px;
}
}
/* make btn-full stretch 100% */
button.btn-full {
  width: 100%;
  color:  #fff;
  background: #4bb543 !important;
  border: none !important;
  line-height: 30px;

}

/* two-col-btns: 50% each, horizontal gap */
.two-col-btns {
  display: flex;
  gap: 1rem;
}
button.wmp-prev.bounce-in{
	background: #000 !important;
    border: none !important;
    line-height: 30px;
    color: #fff !important;
}
button.wmp-next.bounce-in{
	background: #4bb543 !important;
    border: none !important;
    line-height: 30px;
    color: #fff !important;
}
.two-col-btns button {
    flex: 1;
    width: auto;
}

/* ─── SPINNER ────────────────────────────────────────────────────────── */
.spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: .5em;
    vertical-align: middle;
    border: 2px solid rgb(255 255 255 / 0%);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s ease-in-out infinite;
    opacity: 0;
    transition: opacity .2s;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* show spinner when button has .loading, dim the text */
button.loading .spinner {
  opacity: 1;
}
button.loading .btn-text {
  opacity: .6;
}
