/* =========================
   GLOBAL RESET
========================= */
.mv-form, .mv-form * {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* =========================
   RADIO STRIP (COMMON)
========================= */
.mv-toggle {
  background: #f25c3c;
  padding: 10px 16px;
  border-radius: 14px;
  display: inline-flex;
  gap: 24px;
  margin-bottom: 14px;
}

.mv-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.mv-toggle input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #fff;
}

/* =================================================
   DESKTOP VIEW (≥769px)  👉 EXACT DESKTOP IMAGE
================================================= */
@media (min-width: 769px) {

  /* FORM BACKGROUND */
  .mv-form {
    background: transparent;
  }

  /* MAIN BAR */
  .mv-bar {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 22px 16px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.20);
  }

  /* EACH FIELD */
  .mv-field {
    flex: 1;
    padding: 0 18px;
    border-right: 2px solid #e5e5e5;
  }

  .mv-field:last-child {
    border-right: none;
  }

  .mv-field small {
    font-size: 12px;
    color: #777;
    display: block;
    margin-bottom: 6px;
  }

  /* INPUTS – NO BOX, ONLY ORANGE LINE */
  .mv-field input,
  .mv-field select {
    width: 100%;
    border: none;
    border-bottom: 2px solid #f25c3c;
    background: transparent;
    padding: 6px 2px;
    font-size: 16px;
    font-weight: 600;
    outline: none;
  }

  /* SELECT ARROW */
  .mv-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f25c3c' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
  }

  /* BUTTON */
  .mv-bar button {
    background: #f25c3c;
    color: #fff;
    border: none;
    border-radius: 14px;
    height: 56px;
    padding: 0 34px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 16px;
    cursor: pointer;
    white-space: nowrap;
  }
}

/* =================================================
   MOBILE VIEW (≤768px) 👉 EXACT MOBILE IMAGE
================================================= */
@media (max-width: 768px) {

  /* FULL CARD */
  .mv-form {
    background: #ffffff;
    padding: 14px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.20);
    max-width: 95%;
    margin: auto;
  }

  /* RADIO FULL WIDTH */
  .mv-toggle {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
  }

  /* STACK FORM */
  .mv-bar {
    display: block;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .mv-field {
    padding: 0;
    border-right: none;
    margin-bottom: 12px;
  }

  .mv-field small {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    display: block;
  }

  /* MOBILE INPUT BOXES */
  .mv-field input,
  .mv-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
  }

  /* MOBILE BUTTON */
  .mv-bar button {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    font-size: 15px;
    background: #f25c3c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    margin-top: 6px;
  }
}









@media (min-width: 769px) {

  /* form wrapper */
  .mv-form {
    position: relative;
    background: transparent !important;
  }

  /* radio strip */
  .mv-toggle {
    display: inline-flex;
    background: #f25c3c;
    padding: 12px 18px;
    border-radius: 14px 14px 0 0;
    margin-bottom: 0;
  }

  /* main bar touches radio vertically */
  .mv-bar {
    margin-top: -1px; /* perfect touch */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  /* underline touching radio */
  .mv-field input,
  .mv-field select {
    border-bottom: 2px solid #f25c3c !important;
  }
}













@media (max-width: 768px) {

  /* form card */
  .mv-form {
    background: #fff !important;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.20);
  }

  /* radio strip full width */
  .mv-toggle {
    width: 100%;
    background: #f25c3c;
    padding: 12px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  /* underline only horizontal */
  .mv-field input,
  .mv-field select {
    border-bottom: 2px solid #f25c3c !important;
  }
}




/* ==============================
   REMOVE BLACK BOX / OUTLINE
================================ */

/* Desktop + Mobile both */
.mv-field input,
.mv-field select {
  border: none !important;          /* remove box */
  outline: none !important;         /* remove focus outline */
  box-shadow: none !important;      /* remove theme shadow */
  background: transparent !important;
}

/* Keep ONLY orange underline */
.mv-field input,
.mv-field select {
  border-bottom: 2px solid #f25c3c !important;
}

/* Remove focus ring (browser default) */
.mv-field input:focus,
.mv-field select:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* ==============================
   BUTTON HOVER COLOR
================================ */
.mv-bar button:hover {
  background-color: #135157 !important;
}








/* ==============================
   RADIO BUTTON – BLACK CENTER DOT
================================ */

/* Base radio */
.mv-toggle input[type="radio"]{
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
}

/* Selected state – black dot */
.mv-toggle input[type="radio"]:checked::after{
  content: "";
  width: 8px;
  height: 8px;
  background: #000000;        /* 👈 black center dot */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}





















/* ==============================
   RADIO BUTTON – WHITE CIRCLE + BLACK DOT
   WORKS ON DESKTOP & MOBILE
================================ */

/* Hide default browser radio */
.mv-toggle input[type="radio"]{
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;   /* white outer ring */
  border-radius: 50%;
  background: #ffffff;        /* white background */
  position: relative;
  cursor: pointer;
}

/* Black dot when selected */
.mv-toggle input[type="radio"]:checked::after{
  content: "";
  width: 8px;
  height: 8px;
  background: #000000;        /* black center dot */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Mobile touch comfort */
@media (max-width: 768px){
  .mv-toggle input[type="radio"]{
    width: 18px;
    height: 18px;
  }
  .mv-toggle input[type="radio"]:checked::after{
    width: 9px;
    height: 9px;
  }
}








.mv-success-msg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: #e6fffa;
    color: #065f46;
    padding: 18px 25px;
    border-left: 5px solid #10b981;

    font-weight: 600;
    border-radius: 6px;

    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    min-width: 280px;
}

