/* Lumière – Custom Account + Wishlist
   Notes:
   - Uses neutral, premium defaults. Adjust variables to match your exact palette.
   - Designed to look great inside Elementor’s full-width page container.
*/

:root{
  /* Brand-aligned defaults (Lumière) */
  --lm-bg: #FFFFFF;
  --lm-surface: #FFFFFF;
  --lm-surface-2: #F4F5F6;          /* soft panel / footer strip */
  --lm-border: rgba(0,0,0,.10);
  --lm-muted: rgba(0,0,0,.62);
  --lm-text: rgba(0,0,0,.92);

  /* Lumière accents */
  --lm-primary: #161C28;            /* deep navy/charcoal CTA (matches site buttons) */
  --lm-primary-2: #0F1220;
  --lm-gold: #B08C4F;               /* champagne gold accent */

  --lm-radius: 22px;
  --lm-shadow: 0 14px 40px rgba(0,0,0,.08);

  /* Use the site’s global font (Synthese) if loaded */
  --lm-font: "Synthese", "Synthese-Book", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Woo form fields inside the account area – minimalist filled inputs */
.woocommerce .lm-account input,
.woocommerce .lm-account select,
.woocommerce .lm-account textarea{
  font-family: var(--lm-font);
  background: #F4F5F6;
  border: 1px solid #F4F5F6;
  border-radius: 12px;
  padding: 14px 14px;
  color: var(--lm-text);
  box-shadow: none;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.woocommerce .lm-account select{
  padding-right: 38px; /* room for native dropdown arrow */
}

.woocommerce .lm-account input:focus,
.woocommerce .lm-account select:focus,
.woocommerce .lm-account textarea:focus{
  outline: none;
  background: #FFFFFF;
  border-color: rgba(0,0,0,.22);
  box-shadow: 0 0 0 4px rgba(0,0,0,.05);
}

/* Remove overly strong Woo default focus/invalid outlines inside our UI */
.woocommerce .lm-account .woocommerce-Input:focus,
.woocommerce .lm-account .input-text:focus{
  outline: none;
}

/* === Account shell === */
.lm-account{
  font-family: var(--lm-font);
  color: var(--lm-text);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 55%, #FFFFFF 100%);
  border: 1px solid var(--lm-border);
  border-radius: calc(var(--lm-radius) + 6px);
  padding: 26px;
  box-shadow: var(--lm-shadow);
}

.lm-account__header{
  display:flex;
  gap: 18px;
  align-items:flex-start;
  justify-content:space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--lm-border);
}

.lm-account__eyebrow{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--lm-muted);
}

.lm-account__title{
  margin: 8px 0 6px;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
}

.lm-account__sub{
  color: var(--lm-muted);
  max-width: 52ch;
}

.lm-account__header-right{
  display:flex;
  gap: 10px;
  align-items:center;
}

.lm-account__chip{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--lm-border);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  text-decoration:none;
  color: var(--lm-text);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.lm-account__chip:hover{
  transform: translateY(-1px);
  border-color: rgba(176,140,79,.45);
  background: rgba(255,255,255,.95);
}

.lm-account__chip-count{
  display:inline-flex;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(176,140,79,.45);
  color: var(--lm-gold);
  font-size: 12px;
}

/* === Layout === */
.lm-account__layout{
  display:grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  padding-top: 18px;
}

.lm-account__nav{
  position: sticky;
  top: 18px;
  align-self: start;
}

.lm-account__nav-inner{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius);
  overflow:hidden;
}

.lm-account__nav-list{
  list-style:none;
  margin: 0;
  padding: 10px;
}

.lm-account__nav-item{ margin: 2px 0; }

.lm-account__nav-link{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--lm-text);
  transition: background .16s ease, transform .16s ease, border-color .16s ease;
  border: 1px solid transparent;
}

.lm-account__nav-link:hover{
  background: rgba(176,140,79,.08);
  border-color: rgba(176,140,79,.22);
}

.lm-account__nav-item.is-active .lm-account__nav-link{
  background: rgba(176,140,79,.12);
  border-color: rgba(176,140,79,.28);
}

.lm-account__nav-icon{ color: var(--lm-gold); display:flex; }

.lm-account__nav-label{
  font-size: 14px;
  letter-spacing: .01em;
}

.lm-account__nav-footer{
  padding: 14px 16px 16px;
  border-top: 1px solid var(--lm-border);
  background: linear-gradient(180deg, rgba(250,247,240,.75), rgba(255,255,255,.65));
}

.lm-account__nav-footer-title{
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lm-muted);
  margin-bottom: 6px;
}

.lm-account__nav-footer-text{
  color: var(--lm-muted);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.lm-account__nav-footer-cta{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(176,140,79,.35);
  color: var(--lm-text);
  text-decoration:none;
  background: rgba(255,255,255,.75);
}

.lm-account__nav-footer-cta:hover{
  background: #fff;
}

/* === Content panel === */
.lm-account__panel{
  background: var(--lm-surface);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius);
  overflow:hidden;
}

.lm-account__panel-head{
  padding: 16px 18px;
  border-bottom: 1px solid var(--lm-border);
  background: linear-gradient(180deg, rgba(250,247,240,.65), rgba(255,255,255,.85));
}

.lm-account__panel-title{
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}

.lm-account__panel-body{
  padding: 18px;
}

/* Woo tables/forms: soften */
.woocommerce .lm-account table.shop_table,
.woocommerce .lm-account .woocommerce-MyAccount-content,
.woocommerce .lm-account .woocommerce-EditAccountForm,
.woocommerce .lm-account .woocommerce-Addresses{
  font-size: 14px;
}

.woocommerce .lm-account table.shop_table{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--lm-border);
}

.woocommerce .lm-account table.shop_table th,
.woocommerce .lm-account table.shop_table td{
  padding: 12px 14px;
}

/* Buttons */
.lm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(176,140,79,.38);
  background: #fff;
  color: var(--lm-text);
  text-decoration:none;
  cursor:pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
  font-size: 14px;
}

.lm-btn:hover{ transform: translateY(-1px); border-color: rgba(176,140,79,.55); }
.lm-btn--solid{ background: rgba(176,140,79,.10); }
.lm-btn--ghost{ background: transparent; }

/* === Wishlist === */
.lm-wishlist__meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--lm-border);
  margin-bottom: 14px;
}

.lm-wishlist__count{ color: var(--lm-muted); font-size: 13px; }
.lm-wishlist__shop{ color: var(--lm-text); text-decoration:none; border-bottom: 1px solid rgba(176,140,79,.35); }
.lm-wishlist__shop:hover{ border-bottom-color: rgba(176,140,79,.7); }

.lm-wishlist__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lm-wishlist__card{
  border: 1px solid var(--lm-border);
  border-radius: 16px;
  overflow:hidden;
  background: #fff;
  display:grid;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 140px;
}

.lm-wishlist__media{
  display:block;
  background: #fafafa;
  border-right: 1px solid var(--lm-border);
}

.lm-wishlist__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.lm-wishlist__body{
  padding: 12px 12px 14px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.lm-wishlist__name{
  text-decoration:none;
  color: var(--lm-text);
  font-size: 14px;
  line-height: 1.25;
}

.lm-wishlist__price{
  color: var(--lm-muted);
  font-size: 13px;
}

.lm-wishlist__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.lm-wishlist__stock{
  font-size: 12px;
  color: var(--lm-muted);
  letter-spacing: .02em;
}

.lm-wishlist__stock.is-in{ color: rgba(0,0,0,.68); }
.lm-wishlist__stock.is-out{ color: rgba(176,140,79,.9); }

.lm-wishlist__remove{
  border: 1px solid var(--lm-border);
  background: #fff;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color: rgba(0,0,0,.7);
}

.lm-wishlist__remove:hover{
  border-color: rgba(176,140,79,.55);
  color: var(--lm-gold);
}

.lm-wishlist__cta{
  display:flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap:wrap;
}

/* Empty state */
.lm-empty{
  padding: 28px;
  border: 1px dashed rgba(176,140,79,.35);
  border-radius: 16px;
  background: rgba(250,247,240,.7);
}

.lm-empty__title{ font-size: 16px; margin-bottom: 6px; }
.lm-empty__text{ color: var(--lm-muted); margin-bottom: 14px; }

/* Wishlist button on product pages */
.lm-wishlist-inline{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-top: 10px;
}

.lm-wishlist-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(176,140,79,.35);
  background: #fff;
  cursor:pointer;
  transition: transform .16s ease, border-color .16s ease;
}

.lm-wishlist-btn:hover{ transform: translateY(-1px); border-color: rgba(176,140,79,.55); }
.lm-wishlist-btn.is-active{
  background: rgba(176,140,79,.10);
  border-color: rgba(176,140,79,.55);
}
.lm-wishlist-btn__icon{ color: var(--lm-gold); display:flex; }
.lm-wishlist-inline__link{
  color: var(--lm-text);
  text-decoration:none;
  border-bottom: 1px solid rgba(176,140,79,.35);
}
.lm-wishlist-inline__count{
  display:inline-flex;
  margin-left: 8px;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(176,140,79,.45);
  color: var(--lm-gold);
  font-size: 12px;
}

/* ---------------------------------------------------------
   Single product page: subtle, minimal wishlist button
   (Theme/Elementor often styles <button> globally, so we reset with higher specificity.)
   --------------------------------------------------------- */

body.single-product .lm-wishlist-inline{
  display: block;
  margin-top: 14px;
}

body.single-product .lm-wishlist-btn{
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: #F2F2F2;
  color: var(--lm-text);
  box-shadow: none;
  text-transform: none;
}

body.single-product .lm-wishlist-btn:hover{
  transform: none;
  border-color: rgba(0,0,0,.18);
}

body.single-product .lm-wishlist-btn.is-active{
  background: rgba(176,140,79,.12);
  border-color: rgba(176,140,79,.35);
}

body.single-product .lm-wishlist-inline__link{
  display: none !important; /* hides “View wishlist 0” under the button */
}

/* ---------------------------------------------------------
   Product archive: small heart icon on each product card
   --------------------------------------------------------- */

/* Ensure the product card is a positioning context (Woo default loops) */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
  position: relative;
}

/* Make common thumbnail/link wrappers positioning contexts so the heart sits in the image corner */
.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .jet-woo-products__thumbnail,
.woocommerce ul.products li.product .jet-woo-product-thumbnail,
.woocommerce ul.products li.product .jet-woo-product-thumbnail__link{
  position: relative;
  display: block;
}

.woocommerce ul.products li.product .lm-wishlist-loop-btn,
.woocommerce-page ul.products li.product .lm-wishlist-loop-btn,
.lm-wishlist-loop-btn{
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;

  /* ~20% larger */
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;

  /* No circle/badge */
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;

  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  z-index: 6;

  left: auto !important;
  bottom: auto !important;
  inset: auto !important;
  float: none !important;
  line-height: 1 !important;
  text-align: center !important;

  color: rgba(0,0,0,.70);
  transition: transform .12s ease, opacity .12s ease;
}

.lm-wishlist-loop-btn:hover{
  transform: translateY(-1px);
  opacity: .85;
}

.lm-wishlist-loop-btn svg{ width: 22px; height: 22px; }
.lm-wishlist-loop-btn .lm-wishlist-icon{ width: 22px; height: 22px; display: block; }

/* Outline by default */
.lm-wishlist-loop-btn .lm-heart{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Filled black when active */
.lm-wishlist-loop-btn.is-active{
  color: #000;
}
.lm-wishlist-loop-btn.is-active .lm-heart{
  fill: currentColor;
  stroke: currentColor;
}

/* ---------------------------------------------------------
   Single product: minimalist heart next to the title
   (placed by JS into a title row wrapper)
   --------------------------------------------------------- */

/* Title row wrapper injected by JS: title on left, heart on the right */
.lm-product-title-row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.lm-product-title-row .product_title{
  margin-right: 12px;
}

.lm-wishlist-single-btn{
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;

  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  z-index: 20;

  color: rgba(0,0,0,.70);
  transition: opacity .12s ease;
}

.lm-wishlist-single-btn:hover{ opacity: .85; }

.lm-wishlist-single-btn svg{ width: 24px; height: 24px; }
.lm-wishlist-single-btn .lm-wishlist-icon{ width: 24px; height: 24px; display: block; }

/* Outline by default */
.lm-wishlist-single-btn .lm-heart{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Filled black when active */
.lm-wishlist-single-btn.is-active{ color: #000; }
.lm-wishlist-single-btn.is-active .lm-heart{
  fill: currentColor;
  stroke: currentColor;
}

/* Responsive */
@media (max-width: 980px){
  .lm-account__layout{ grid-template-columns: 1fr; }
  .lm-account__nav{ position: static; }
  .lm-wishlist__grid{ grid-template-columns: 1fr; }
  .lm-account__header{ flex-direction: column; }
  .lm-account__header-right{ width: 100%; justify-content: flex-start; flex-wrap: wrap; }
}


/* =========================================================
   Auth (Login / Sign Up) – matches Lumière site styling
   ========================================================= */

.lm-auth{
  font-family: var(--lm-font);
  color: var(--lm-text);
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border: 1px solid var(--lm-border);
  border-radius: calc(var(--lm-radius) + 6px);
  box-shadow: var(--lm-shadow);
  overflow: hidden;
}

.lm-auth__topbar{
  position: relative;
  padding: 22px 22px 10px;
  text-align: center;
  background: #FFFFFF;
}

.lm-auth__title{
  margin: 0;
  font-size: 26px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
}

.lm-auth__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lm-muted);
  border: 1px solid transparent;
  text-decoration: none;
}
.lm-auth__close:hover{ color: var(--lm-text); border-color: var(--lm-border); background: rgba(0,0,0,.02); }

.lm-tabs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 22px 0;
  background: #FFFFFF;
}

.lm-tab{
  appearance: none;
  border: 1px solid #000 !important;
  background: transparent !important;
  color: #000 !important;
  border-radius: 999px;
  padding: 12px 14px;
  font-family: var(--lm-font);
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.lm-tab:hover,
.lm-tab:focus{
  background: #F8F8F8 !important;
  color: #000 !important;
  border-color: #000 !important;
  outline: none;
  box-shadow: none;
}

.lm-tab.is-active{
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

/* Active tab hover: match the rest (light fill, black text) */
.lm-tab.is-active:hover,
.lm-tab.is-active:focus{
  background: #F8F8F8 !important;
  border-color: #000 !important;
  color: #000 !important;
}

.lm-auth__body{
  padding: 18px 22px 22px;
}

.lm-section{ display: none; }
.lm-section.is-active{ display: block; }

.lm-field{ margin: 14px 0; }

.lm-label{
  display: block;
  font-size: 14px;
  color: var(--lm-text);
  margin: 0 0 6px !important; /* force spacing even if inline margin:0 exists */
  padding: 0 !important;
}

.lm-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.lm-input{
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;

  background: #F4F5F6;                 /* minimalist filled field */
  border: 1px solid #F4F5F6 !important; /* border same as bg (looks borderless) */
  border-radius: 12px !important;      /* slightly less rounded */

  padding: 14px 14px;
  font-family: var(--lm-font);
  font-size: 16px;
  color: var(--lm-text);

  box-shadow: none;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.lm-input:focus{
  outline: none;
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,.22) !important;
  box-shadow: 0 0 0 4px rgba(0,0,0,.05);
}

.lm-link{
  color: var(--lm-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 14px;
}
.lm-link:hover{ color: var(--lm-primary); }

.lm-check{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 14px 0 18px;
  color: var(--lm-muted);
  font-size: 14px;
}
.lm-check input{ width: 18px; height: 18px; }

.lm-btn{
  width: 100%;
  box-sizing: border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 12px !important;
  padding: 14px 16px;
  font-family: var(--lm-font);
  font-size: 15px;
  letter-spacing: .02em;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.lm-btn:active{ transform: translateY(1px); }

.lm-btn--primary{
  width: 100% !important;
  box-sizing: border-box;
  display: flex !important;
  background: transparent !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  box-shadow: none !important;
}

.lm-btn--primary:hover,
.lm-btn--primary:focus{
  background: #F8F8F8 !important;
  color: #000 !important;
  border-color: #000 !important;
  box-shadow: none !important;
  outline: none;
}

/* Hard overrides (themes often reset inputs/buttons globally) */
.lm-auth input.lm-input{
  -webkit-appearance: none;
  appearance: none;
  border-radius: 12px !important;
  width: 100% !important;
  box-sizing: border-box;
  background: #F4F5F6 !important;
  border: 1px solid #F4F5F6 !important;
}

.lm-auth button.lm-btn,
.lm-auth a.lm-btn{
  width: 100% !important;
  box-sizing: border-box;
  border-radius: 12px !important;
}

.lm-auth button.lm-btn.lm-btn--primary{
  border-radius: 12px !important;
}

.lm-divider{
  display:flex;
  align-items:center;
  gap: 12px;
  margin: 22px 0 14px;
  color: rgba(0,0,0,.45);
  font-size: 13px;
  letter-spacing: .02em;
  justify-content:center;
}
.lm-divider:before, .lm-divider:after{
  content:"";
  height: 1px;
  background: rgba(0,0,0,.12);
  flex: 1;
}

.lm-social{ display: grid; gap: 10px; }

.lm-btn--apple{
  background: #111111;
  color: #FFFFFF;
}
.lm-btn--apple:hover,
.lm-btn--apple:focus{
  background: #111111;
  color: #FFFFFF !important; /* keep text + logo white on hover */
  border-color: transparent;
}

.lm-btn--google{
  background: #FFFFFF;
  border-color: rgba(0,0,0,.18);
  color: var(--lm-text) !important;
}
.lm-btn--google:hover,
.lm-btn--google:focus{
  border-color: rgba(0,0,0,.28);
  background: rgba(0,0,0,.01);
  color: var(--lm-text) !important;
}

.lm-note{
  margin: 0 0 10px;
  color: var(--lm-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Full-bleed footer strip (fixes the “not reaching edges” issue) */
.lm-auth__footer--full{
  margin: 18px -22px -22px;
  padding: 18px 22px;
  background: var(--lm-surface-2);
  border-top: 1px solid rgba(0,0,0,.10);
  border-radius: 0 0 calc(var(--lm-radius) + 6px) calc(var(--lm-radius) + 6px);
  text-align: center;
  color: rgba(0,0,0,.68);
}

/* Woo notices inside our auth box */
.lm-auth .woocommerce-error,
.lm-auth .woocommerce-message,
.lm-auth .woocommerce-info{
  margin: 0 0 16px;
  border-radius: 14px;
}

/* Mobile tweaks */
@media (max-width: 480px){
  .lm-auth{ border-radius: var(--lm-radius); }
  .lm-auth__topbar{ padding: 18px 16px 8px; }
  .lm-tabs{ padding: 10px 16px 0; }
  .lm-auth__body{ padding: 16px; }
  .lm-auth__footer--full{ margin: 18px -16px -16px; padding: 16px; border-radius: 0 0 var(--lm-radius) var(--lm-radius); }
}

