/* Jain Shutter Industry - Form Only Page */

:root{
  --orange:#f26a21;
  --orange-dark:#d9570e;
  --black:#111111;
  --muted:#666666;
  --line:#e8e8e8;
  --bg:#f7f7f7;
  --white:#ffffff;
  --shadow:0 20px 55px rgba(0,0,0,.10);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(242,106,33,.14), transparent 32%),
    var(--bg);
  color:var(--black);
  line-height:1.45;
}

.form-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 16px;
}

.form-wrapper{
  width:min(620px, 100%);
  background:var(--white);
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.form-wrapper:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:var(--orange);
}

.form-heading{
  text-align:center;
  margin-bottom:26px;
}

.form-heading p{
  color:var(--orange);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:8px;
}

.form-heading h1{
  font-size:34px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:-1px;
  margin-bottom:10px;
}

.form-heading span{
  color:var(--muted);
  font-size:14px;
}

.field{
  margin-bottom:15px;
}

.field label{
  display:block;
  font-size:13px;
  font-weight:900;
  margin-bottom:7px;
}

.field label b{
  color:var(--orange);
}

input,
select{
  width:100%;
  height:48px;
  border:1px solid #dcdcdc;
  background:#fff;
  border-radius:8px;
  padding:0 13px;
  font-size:14px;
  outline:none;
  transition:.2s ease;
}

input:focus,
select:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 4px rgba(242,106,33,.11);
}

.radio-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.radio-row label{
  height:46px;
  display:flex;
  align-items:center;
  gap:8px;
  border:1px solid #dcdcdc;
  border-radius:8px;
  padding:0 13px;
  font-weight:800;
  cursor:pointer;
}

.radio-row input{
  width:auto;
  height:auto;
  accent-color:var(--orange);
}

.hidden{
  display:none;
}

.error{
  color:#d92323;
  font-size:12px;
  display:block;
  margin-top:5px;
}

.submit-btn{
  width:100%;
  height:52px;
  border:0;
  border-radius:8px;
  background:var(--orange);
  color:#fff;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
  transition:.2s ease;
  box-shadow:0 14px 30px rgba(242,106,33,.25);
}

.submit-btn:hover{
  background:var(--orange-dark);
  transform:translateY(-1px);
}

.submit-btn:disabled{
  opacity:.65;
  cursor:not-allowed;
  transform:none;
}

.form-note{
  margin-top:12px;
  color:#777;
  font-size:11px;
  text-align:center;
}

.form-status{
  display:none;
  margin-top:14px;
  padding:12px;
  border-radius:8px;
  font-size:13px;
  font-weight:800;
  text-align:center;
}

.form-status.success{
  display:block;
  background:#ecfff2;
  color:#137b34;
  border:1px solid #bff0ce;
}

.form-status.error{
  display:block;
  background:#fff1f1;
  color:#bd2525;
  border:1px solid #ffd1d1;
}

@media (max-width: 520px){
  .form-page{
    padding:24px 12px;
    align-items:flex-start;
  }

  .form-wrapper{
    padding:24px 18px;
    border-radius:14px;
  }

  .form-heading h1{
    font-size:27px;
  }

  .radio-row{
    grid-template-columns:1fr;
  }
}
