body {
 font-family: "Open Sans", sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 20px;
}
header{max-width:425px; margin: auto; display:flex; flex-flow:row; justify-content:space-between; padding:20px 20px 0px 20px;}

.form-section{background:#fff; box-shadow: 0 0 15px rgba(0,0,0,0.1); max-width:425px; margin:0 auto;}
.seperator{padding:0px 7px; text-align:center;}


.form-container {
  padding-top: 0px; 
  max-width:425px;
  margin: auto;
  padding: 25px 20px;
  
}

h1 {
  color:#A70A25;
  font-weight:700; font-size:28px; line-height: 34px;
  margin-top: 0px;
}
h3{font-size:20px; color:#000; margin:10px 0px; margin-bottom: 15px;}
 

.subtitle {
  font-size: 16px;
  color: #000;
  margin:15px 0px;
}

form {
  display: flex;
  flex-direction: column;
}

select, input[type="text"], input[type="tel"] {
  padding: 10px;
  font-size: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.checkbox-label {
  font-size: 12px;
  color: #333;
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

button {
  background: linear-gradient(to right, #b20000, #ff7a00);
  color: white;
  border: none;
  padding: 12px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.custom-dropdown {
  width:100%;
  position: relative;
  font-size: 14px;
}

.dropdown-selected {
  border: 1px solid #ccc;
  padding: 8px 12px;
  background-color: #fff;
  color:#000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  margin-bottom: 15px;
}
.selected-option-title {
  font-weight: bold;
}

.dropdown-options {
  display: none;
  position: absolute;
  background: #fff;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  z-index: 99;
}

.dropdown-options.show {
  display: block;
}

.icon span {
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}


.dropdown-options {
  display: none;
  position: absolute;
  top: 74%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 0 0 5px 5px;
}

.dropdown-options.show {
  display: block;
}

.dropdown-item {
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
  white-space:wrap !important;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

.icon {
  font-size: 22px;
  color: #333;
  padding-top: 2px;
}

.option-title {
 
  color: #111;
}

.option-desc {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.arrow {
  font-size: 16px;
  color: #000;
}

.consent {
  font-size: 12px;
  color: #555;
  margin-top: 15px;
}
.material-symbols-outlined{font-size:35px !important;}

/******************************CSS for OTP POPUP***********************************************
******************************************************************************/
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 354px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}
.popup-container {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .popup-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.3);
    width: 300px;
  }
  .otp-inputs input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    margin: 10px 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  .verify-btn {
    margin-top: 20px;
    background: linear-gradient(to right, #a80077, #f24900);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
  }
  .resend-link {
    display: block;
    margin-top: 10px;
    color: #007BFF;
    font-size: 14px;
    cursor: pointer;
  }
.otp-inputs {
  margin: 15px 0;
}
 

footer {
 max-width:425px;
  background:#1A1A1A;
  padding:30px 20px;
  font-size: 10px;
  color: #fff;
  line-height: 1.4;
  text-align: justify;
  margin:0 auto;
}

footer a {color:#fff; text-decoration:underline;}
footer a:hover{text-decoration:none; color:#fff;}