/* Container */
.usrform{
     padding: 30px 40px;
    border-radius: 12px;
    animation: slideIn 0.6s ease;
    width: 100%;
    max-width: 400px;
    margin: auto;
    
    margin-bottom: 100px;
}

/* Motion sensitive users ke liye */
@media (prefers-reduced-motion: reduce){
  .usrform{ animation: none; }
}

/* Entrance animation */
@keyframes slideIn{
  from{ transform: translateY(-50px); opacity: 0; }
  to{ transform: translateY(0); opacity: 1; }
}

/* Heading */
.usrform h2{
  text-align: center;
  margin-bottom: clamp(16px,3vw,25px);
  font-size: clamp(20px,2.8vw,26px);
  color: #333;
  text-shadow: 1px 1px 2px #ccc;
  line-height: 1.2;
}




/* Form group spacing */
.form-group{
   margin-bottom: clamp(14px,2.8vw,20px);
  width: 100%;
  }

/* Labels */
.form-group label{
  display:block;
  margin-bottom: 6px;
  font-weight: 600;
  color:#444;
  font-size: clamp(13px,2.2vw,15px);
}

/* Inputs */
.form-group input{
  width:100%;
  padding: clamp(9px,2.4vw,12px);
  border:1px solid #ccc;
  border-radius: 8px;                 /* thoda zyada soft */
  transition: border-color .2s ease, box-shadow .2s ease;
  font-size: clamp(14px,2.4vw,16px);
  background:#fff;
  box-sizing: border-box;
}
.form-group input:focus{
  border-color:#007bff;
  outline:none;
  box-shadow: 0 0 0 3px rgba(0,123,255,.15);
}

/* Helper/error text (optional) */
.form-group small{
  display:block;
  margin-top:6px;
  font-size: 12px;
  color:#d93025;
}

/* Button */
.register-div{
  text-align:center;
  background:#262626;
  color:#fff;
  padding: clamp(10px,2.6vw,12px);
  font-size: clamp(15px,2.6vw,16px);
  font-weight: 700;
 width: 150px;
  margin: auto;
  border-radius: 10px;               /* match inputs */
  cursor:pointer;
  transition: transform .08s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  user-select:none;
}
.register-div:hover{ background:#3a3a3a; }
.register-div:active{ transform: translateY(1px); }

/* Narrow phones: width fit + spacing tight */
@media (max-width: 420px){
  .usrform{ max-width: 94%; }
}

/* Wider layouts: 2-column quick layout (optional helper class) */
.form-grid{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width:700px){
  .form-grid{ grid-template-columns: 1fr; }
}



/* opt area */
.veryplv{
  display: flex;
  
}
.otpar{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.veryfybtn{
  width: 150px;
    text-align:center;
  background:#262626;
  color:#fff;
  padding: clamp(10px,2.6vw,12px);
  font-size: clamp(15px,2.6vw,16px);
  font-weight: 700;
  border-radius: 0px 10px 10px 0px;               /* match inputs */
  cursor:pointer;
  transition: transform .08s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}