/* Public marketing + auth surfaces. Scoped so the dashboard is untouched. */

@font-face {
  font-family: "Inter";
  src: url("/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body.landing-page,
body.bg-login {
  font-family: "Inter", "Segoe UI", sans-serif;
  background-color: #fffaf4;
  color: #2a2118;
  overflow-x: hidden;
}

body.landing-page section p,
body.landing-page p {
  color: #3a2f24;
  font-size: 1.05rem;
  line-height: 1.55;
  font-family: inherit;
}

body.landing-page h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
}

body.landing-page button:focus-visible {
  outline: 3px solid #f3a822;
  outline-offset: 2px;
}

body.landing-page .container {
  overflow: visible;
}

body.landing-page #root,
body.landing-page #website {
  background: transparent;
}

.mk-skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.6rem 1rem;
  background: #2a2118;
  color: #fffaf4;
  border-radius: 8px;
}

.mk-skip:focus {
  top: 1rem;
  color: #fffaf4;
}

body.landing-page h1,
body.landing-page h2,
body.landing-page .mk-display,
body.bg-login h3,
body.bg-login .mk-display {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #2a2118;
}

body.landing-page a:focus-visible,
body.bg-login a:focus-visible,
body.landing-page button:focus-visible,
body.bg-login button:focus-visible,
body.landing-page input:focus-visible,
body.bg-login input:focus-visible,
body.landing-page select:focus-visible {
  outline: 3px solid #f3a822;
  outline-offset: 2px;
}

/* —— Nav —— */
body.landing-page .mk-nav.navbar-default {
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 33, 24, 0.08) !important;
  box-shadow: 0 8px 24px rgba(42, 33, 24, 0.06);
}

body.landing-page .mk-nav .navbar-toggler {
  background-color: #ec831e;
  border: 0;
  border-radius: 8px;
  color: #fff;
  padding: 0.35rem 0.65rem;
}

body.landing-page .mk-nav .mk-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ff9800;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

body.landing-page .mk-nav .mk-brand:hover,
body.landing-page .mk-nav .mk-brand:focus {
  color: #ec831e;
  text-decoration: none;
  background: transparent;
}

body.landing-page .mk-nav .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem !important;
  color: #5c4a38 !important;
  padding: 0.85rem 1rem !important;
  border-top: none !important;
  background: transparent !important;
}

body.landing-page .mk-nav .nav-link:hover,
body.landing-page .mk-nav .nav-link:focus {
  color: #ff9800 !important;
  background: transparent !important;
}

body.landing-page .mk-nav .nav-link.is-active {
  color: #ff9800 !important;
  font-weight: 700;
}

body.landing-page .mk-nav .mk-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body.landing-page .mk-nav .btn-outline-warning {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 999px;
  padding: 0.45rem 1.15rem;
  color: #ff9800;
  border: 1.5px solid #ec831e;
  background: transparent;
}

body.landing-page .mk-nav .btn-outline-warning:hover {
  background: #ec831e;
  color: #fff;
  border-color: #ec831e;
}

@media (min-width: 992px) {
  body.landing-page .mk-nav.navbar-default {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}

/* —— Hero —— */
.mk-hero {
  position: relative;
  padding: 7.5rem 0 4rem;
  background-color: #ec831e;
  background-image: url("/img/fondo_cabecera.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 72%;
  overflow: hidden;
}

.mk-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(196, 95, 13, 0.28) 0%,
    rgba(236, 131, 30, 0.12) 42%,
    rgba(243, 168, 34, 0.08) 100%
  );
  pointer-events: none;
}

.mk-hero .container,
.mk-hero .mk-hero-inner {
  position: relative;
  z-index: 1;
}

.mk-hero-grid {
  display: grid;
  gap: 1.5rem 2.5rem;
}

.mk-hero-copy { grid-area: copy; }
.mk-hero-form { grid-area: form; }
.mk-hero-facts { grid-area: facts; }

@media (max-width: 991px) {
  .mk-hero-grid {
    grid-template-areas:
      "copy"
      "form"
      "facts";
  }

  .mk-hero {
    padding-bottom: 5.5rem;
  }

  .mk-hero-facts {
    padding-right: 5rem;
    padding-bottom: 0.5rem;
  }
}

@media (min-width: 992px) {
  .mk-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
      "copy form"
      "facts form";
    align-items: start;
  }
}

.mk-hero-copy {
  color: #fffaf4;
  animation: mk-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mk-hero h1 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fffaf4 !important;
  max-width: 11em;
  margin: 0 0 1.15rem;
  text-shadow: 0 2px 18px rgba(90, 40, 0, 0.25);
}

.mk-hero .mk-lead {
  font-size: 1.125rem !important;
  line-height: 1.5;
  max-width: 42ch;
  color: #fff3e3 !important;
  font-weight: 400;
  margin: 0 0 1.75rem;
}

.mk-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.mk-facts li {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.7rem;
  align-items: start;
  color: #fffaf4;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.35;
}

.mk-facts img {
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.1rem;
}

.mk-quote {
  background: #fffaf4;
  border: 1px solid rgba(42, 33, 24, 0.08);
  border-radius: 22px;
  padding: 1.6rem 1.45rem 1.45rem;
  box-shadow: 0 18px 40px rgba(90, 40, 0, 0.22);
  animation: mk-rise 0.7s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mk-quote h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ff9800;
  text-align: center;
  margin: 0 0 1rem;
  text-transform: none;
}

.mk-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mk-rate {
  text-align: center;
  padding: 0.55rem 0.4rem;
  border-radius: 12px;
  background: #fff3e3;
  color: #2a2118;
}

.mk-rate.is-active {
  background: #2a2118;
  color: #fffaf4;
}

.mk-rate span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.mk-rate strong {
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mk-quote label.mk-field-label {
  display: block;
  margin: 0 0 0.35rem;
  color: #ff9800;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.mk-quote .input-group {
  border: 1px solid #ead7c0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.mk-quote .input-group:focus-within {
  border-color: var(--color-naranja-2);
  box-shadow: 0 0 0 3px rgba(243, 168, 34, 0.22);
}

.mk-quote .input-group > .form-control,
.mk-quote .input-group .form-control,
.mk-quote .input-group .input-group-addon,
.mk-quote .input-group .select2-container--bootstrap4 .select2-selection {
  border: 0;
  box-shadow: none;
  color: #2a2118;
  background-color: transparent;
}

.mk-quote .input-group > .form-control:first-child {
  border-radius: 12px 0 0 12px;
}

.mk-quote .input-group > .form-control:not(:first-child) {
  border-radius: 0;
}

.mk-quote .input-group-prepend {
  margin: 0;
  border-right: 1px solid #ead7c0;
}

.mk-quote .input-group-append {
  margin: 0;
  border-left: 1px solid #ead7c0;
}

.mk-quote .input-group-prepend .input-group-addon {
  border-radius: 12px 0 0 12px;
  display: flex;
  align-items: center;
}

.mk-quote .input-group-append .input-group-addon {
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
}

.mk-quote .input-group-append .select2-container,
.mk-quote .input-group-append .select2-container .select2-selection,
.mk-quote .input-group-append .select2-container--bootstrap4 .select2-selection,
.mk-quote .input-group-append .select2-container--bootstrap4 .select2-selection--single {
  border-radius: 0 12px 12px 0 !important;
}

.mk-quote .select2-container--bootstrap4.select2-container--focus .select2-selection {
  box-shadow: none;
}

.mk-quote .btn-moneyking {
  width: 100%;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.mk-quote .btn-moneyking:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@keyframes mk-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 575px) {
  .mk-hero {
    background-size: 160%;
    padding-top: 6.25rem;
  }
}

/* —— Sections —— */
.mk-section {
  padding: 4.5rem 0;
}

.mk-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.75rem;
  color: #ff9800;
}

.mk-section-lead {
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  color: #5c4a38;
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center;
}

.mk-trust {
  background: #2a2118;
  color: #fff3e3;
  padding: 2.6rem 0;
}

.mk-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .mk-trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.mk-trust p {
  margin: 0;
  font-size: 0.95rem !important;
  line-height: 1.4;
  color: #fff3e3 !important;
}

.mk-trust strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f3a822;
  margin-bottom: 0.25rem;
}

.mk-banks-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .mk-banks-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}

.mk-bank-panel {
  background: #fff;
  border: 1px solid rgba(42, 33, 24, 0.08);
  border-radius: 20px;
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: 0 10px 28px rgba(42, 33, 24, 0.06);
}

.mk-bank-panel h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #2a2118;
}

.mk-bank-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  margin-bottom: 0.85rem;
}

.mk-bank-logos img {
  height: 44px;
  width: auto;
}

.mk-bank-note {
  display: block;
  text-align: center;
  color: #5c4a38;
  font-size: 0.9rem;
  font-weight: 500;
}

.mk-steps {
  background: #fdf6ee;
}

.mk-steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .mk-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .mk-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.mk-step {
  text-align: center;
  padding: 0.5rem 0.5rem 0;
}

.mk-step img {
  max-height: 140px;
  width: auto;
  margin: 0 auto 1rem;
}

.mk-step h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ff9800;
  margin: 0 0 0.4rem;
}

.mk-step p {
  margin: 0 auto;
  max-width: 28ch;
  color: #5c4a38 !important;
  font-size: 0.98rem !important;
  line-height: 1.45;
}

.mk-step-num {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  color: #ec831e;
  margin-right: 0.3rem;
}

.mk-stats {
  background: #fff;
}

.mk-stat-block + .mk-stat-block {
  margin-top: 2rem;
}

.mk-stat-block .mk-stat-value {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ff9800;
  line-height: 1.15;
  margin: 0;
}

.mk-stat-block p {
  margin: 0.35rem 0 0;
  font-size: 1.15rem !important;
  color: #5c4a38 !important;
}

.mk-impact {
  background: #fff3e3;
}

.mk-impact-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .mk-impact-card {
    grid-template-columns: 160px 1fr;
    gap: 2rem;
  }
}

.mk-impact img {
  max-width: 160px;
  margin: 0 auto;
}

.mk-impact h2 {
  margin-top: 0;
}

.mk-impact p {
  color: #5c4a38 !important;
  max-width: 60ch;
}

.mk-impact a {
  font-weight: 700;
}

/* —— Footer —— */
.mk-footer {
  background: #2a2118;
  color: #f3e6d6;
  padding: 3.5rem 0 2rem;
}

body.landing-page .mk-footer h2,
body.landing-page .mk-footer h3,
.mk-footer h2,
.mk-footer h3 {
  font-family: "Inter", sans-serif;
  color: #f3a822;
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
}

.mk-footer p,
.mk-footer a {
  color: #f3e6d6 !important;
  font-size: 0.98rem !important;
}

.mk-footer a:hover {
  color: #f3a822;
}

.mk-footer .mk-legal {
  border-top: 1px solid rgba(243, 230, 214, 0.14);
  margin-top: 2rem;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: #cbb8a2;
}

.mk-footer .mk-legal a {
  color: #f3e6d6;
  margin: 0 0.4rem;
}

.mk-store img {
  height: 44px;
  width: auto;
}

.mk-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.mk-social img {
  width: 28px;
  height: 28px;
}

.mk-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(18, 70, 32, 0.35);
  overflow: hidden;
}

.mk-whatsapp img {
  width: 58px;
  height: 58px;
}

/* —— Inner pages —— */
.mk-page-hero {
  padding: 8rem 0 3rem;
  background-color: #fff3e3;
  background-image: url("/img/fondo_nosotros_1.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 48%;
}

.mk-page-hero h1 {
  color: #ff9800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  max-width: 16ch;
}

.mk-prose {
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #3a2f24;
}

.mk-prose p {
  color: inherit !important;
  font-size: inherit !important;
}

.mk-vision .mk-prose p {
  color: #fffaf4 !important;
}

.mk-prose p + p {
  margin-top: 1rem;
}

.mk-vision {
  background-image: url("/img/fondo_nosotros_2.svg");
  background-size: cover;
  background-position: left center;
  color: #fffaf4;
  padding: 4.5rem 0;
}

.mk-vision .mk-prose {
  color: #fffaf4;
}

body.landing-page .mk-vision h2,
.mk-vision h2 {
  color: #fffaf4;
}

.mk-ong {
  background: #fff;
}

.mk-ong-photos {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .mk-ong-photos {
    grid-template-columns: 1fr 1fr;
  }
}

.mk-ong-photos img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(42, 33, 24, 0.1);
}

.mk-blog-card a h2 {
  color: #2a2118;
  font-size: 1.15rem;
  margin: 0.4rem 0 0.35rem;
}

.mk-blog-card a:hover h2 {
  color: #ff9800;
}

.mk-blog-card p {
  color: #5c4a38;
}

/* —— Auth —— */
body.bg-login {
  min-height: 100vh;
  background-color: #2a2118;
  background-image: url("/landing/img/bglogin.jpg");
  background-size: cover;
  background-position: center;
}

body.bg-login::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(42, 33, 24, 0.45);
  pointer-events: none;
}

body.bg-login .row,
body.bg-login .middle-box,
body.bg-login .loginscreen,
body.bg-login #root {
  position: relative;
  z-index: 1;
}

body.bg-login .mk-auth-card,
body.bg-login form.br-20,
body.bg-login .loginscreen form,
body.bg-login #frmLogin,
body.bg-login #frmRestablecerContrasena,
body.bg-login #frmRecuperarContrasena,
body.bg-login #frmEliminarCuenta,
body.bg-login .mk-registro-card {
  position: relative;
  z-index: 1;
  background: #fffaf4;
  border: 1px solid rgba(42, 33, 24, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

body.bg-login #frmLogin,
body.bg-login #frmRestablecerContrasena,
body.bg-login #frmRecuperarContrasena,
body.bg-login #frmEliminarCuenta {
  padding: 2rem 1.5rem 1.6rem;
}

body.bg-login #frmRegistro {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.mk-registro {
  min-height: 100vh;
  padding: 2.5rem 1rem 2rem;
}

.mk-registro-wrap {
  max-width: 34rem;
  margin: 0 auto;
}

.mk-registro-card {
  padding: 2rem 1.75rem 1.75rem;
}

.mk-registro-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #2a2118;
  font-weight: 800;
}

.mk-registro-brand:hover {
  color: #ff9800;
  text-decoration: none;
}

.mk-registro-card h1 {
  font-family: "Inter", sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: #ff9800;
  margin: 0 0 0.4rem;
}

.mk-registro-lead {
  text-align: center;
  color: #5c4a38 !important;
  font-size: 0.98rem !important;
  margin: 0 0 1.25rem;
}

.mk-registro-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.3rem;
  margin: 0 0 1.75rem;
  background: #fff3e3;
  border-radius: 999px;
}

.mk-registro-switch button {
  border: 0;
  background: transparent;
  color: #5c4a38;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.mk-registro-switch button.is-active {
  background: #ff9800;
  color: #fff;
}

.mk-registro-card h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ff9800;
  margin: 1.15rem 0 0.75rem;
}

.mk-registro-card .form-group {
  margin-bottom: 0.95rem;
}

.mk-registro-card label {
  display: block;
  margin: 0 0 0.3rem;
  color: #5c4a38;
  font-weight: 700;
  font-size: 0.86rem;
}

.mk-registro-card .form-control,
.mk-registro .select2-container--bootstrap4 .select2-selection {
  border: 1px solid #ead7c0;
  border-radius: 12px;
  min-height: 46px;
  color: #2a2118;
  box-shadow: none;
}

.mk-registro .select2-container--bootstrap4 .select2-selection--single {
  height: 46px !important;
}

.mk-registro .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
  line-height: 44px;
  padding-left: 12px;
}

.mk-registro-card .form-control:focus,
.mk-registro .select2-container--bootstrap4.select2-container--focus .select2-selection {
  border-color: #ff9800;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.22);
}

.mk-registro-grid {
  display: grid;
  gap: 0 1rem;
}

@media (min-width: 576px) {
  .mk-registro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mk-doc-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.55rem;
}

.mk-doc-row .select2-container {
  width: 100% !important;
}

.mk-field-hint,
.mk-pass-rules {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  font-size: 0.82rem;
  line-height: 1.4;
}

.mk-pass-rules li,
.mk-field-hint {
  color: #5c4a38;
}

.mk-pass-rules li.is-ok,
.mk-field-hint.is-ok {
  color: #1f6b3a;
}

.mk-pass-rules li.is-bad,
.mk-field-hint.is-bad {
  color: #b42318;
}

.mk-check {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 1.1rem 0 1.35rem;
}

.mk-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: #ff9800;
}

.mk-check label {
  margin: 0;
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #3a2f24;
}

.mk-registro-card #btnRegistro {
  display: block;
  width: 100%;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  margin: 0.4rem 0 1rem;
}

.mk-registro-login {
  text-align: center;
  margin: 0;
  color: #5c4a38 !important;
  font-size: 0.95rem !important;
}

.mk-registro .mk-auth-foot {
  text-align: center;
  margin: 1.15rem 0 0;
}

body.bg-login a {
  color: #ff9800;
  font-weight: 700;
}

body.bg-login h3 {
  color: #ff9800;
}

body.bg-login .form-control {
  border-radius: 10px;
  min-height: 44px;
}

body.bg-login .btn-moneyking {
  border-radius: 999px;
}

body.bg-login .mk-auth-foot,
body.bg-login .text-light small,
body.bg-login small {
  color: #f3e6d6 !important;
}

@media (max-width: 767px) {
  .mk-hero h1 {
    max-width: none;
  }

  .mk-page-hero {
    background-size: 80%;
    padding-top: 7rem;
  }

  .mk-whatsapp {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}
