.c-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #333;
    box-sizing: border-box;
  }
  
  .c-form input::placeholder {
    color: #333;
  }
  
  .reg-form__preloader-img{
    display: block;
    margin:10px auto; 
    width:15%
  }
  .hero__btn {
    width: 100%;
    padding: 15px;
    background-color: #b92e32 !important;
    color: #fff !important;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
  }
  .iti{
    width: 100% !important;
    margin-bottom: 10px;
    
  }
  .hidden {
    display: none;
  }

  .c-form {
    max-width: 550px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }

  .phone{
  }
  /* ───────── ПАЛИТРА из основного style.css ───────── */
:root{
  --red-dk:#8C0C17;
  --red:#C1121F;
  --red-lt:#FF595E;
}

/* ───────── КОНТЕЙНЕР ───────── */
.c-form{
  max-width:480px;
  margin:0 auto;
  padding:42px 38px 34px;
  box-sizing:border-box;

  background:rgba(255,255,255,.08);          /* стеклянная карточка */
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(22px);
  border-radius:24px;
  box-shadow:0 8px 26px rgba(0,0,0,.12);
}

/* ───────── ПОЛЯ ВВОДА ───────── */
.c-form input[type=text],
.c-form input[type=tel],
.c-form input[type=email]{
  width:100%;
  padding:14px 20px;
  margin-bottom:18px;
  font-size:1rem;
  border-radius:12px;

  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  color:#fff;
  transition:.25s;
}
.c-form input::placeholder{color:rgba(255,255,255,.60)}

.c-form input:focus{
  outline:none;
  border-color:var(--red-lt);
  background:rgba(255,255,255,.12);
}

/* ───────── ПЛАГИН ТЕЛЕФОНА ───────── */
.c-form .iti{width:100%!important;margin-bottom:18px}
.c-form .iti__selected-flag{background:transparent}

/* ───────── КНОПКА ───────── */
.c-form .hero__btn{
  width:100%;
  padding:16px;
  border:none;
  border-radius:48px;
  font-size:1.05rem;
  font-weight:600;
  text-transform:uppercase;

  color:#fff;
  background:linear-gradient(135deg,var(--red-lt),var(--red));
  box-shadow:0 6px 24px rgba(193,18,31,.35);
  cursor:pointer;
  transition:.25s;
}
.c-form .hero__btn:hover:not([disabled]){
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(193,18,31,.50);
}
.c-form .hero__btn[disabled]{opacity:.45;cursor:not-allowed}

/* ───────── СОСТОЯНИЯ ВАЛИДАЦИИ (JS красит background-color) ───────── */
.c-form input{transition:background-color .25s,border-color .25s}

/* ───────── PRELOADER ───────── */
.reg-form__preloader-img{width:22%;margin:12px auto;display:none}

/* ───────── ОШИБКА ───────── */
.error-message{
  margin-top:14px;
  padding:10px 14px;
  font-size:.95rem;
  color:#fff;
  background:rgba(193,18,31,.90);
  border-radius:10px;
}

/* ───────── MOBILE ───────── */
@media(max-width:480px){
  .c-form{padding:32px 26px}
}
