/* ==========================
   INDIAN BANK STYLE THEME
   ========================== */
.branch-search-form {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 47, 108, 0.15);
  padding: 25px 30px;
  max-width: 700px;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
  color: #002f6c;
  border-top: 6px solid #ffb81c;
}

/* Header */
.form-section-header {
  font-size: 1.4rem;
  font-weight: 600;
  color: #002f6c;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffb81c;
  padding-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Layout */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.full-width {
  width: 100%;
}

/* Labels */
label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #002f6c;
}

.required {
  color: #d9534f;
}

/* Inputs and Selects */
select,
input[type=text] {
  border: 1.5px solid #d9d9d9;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease-in-out;
}

select:focus,
input[type=text]:focus {
  border-color: #ffb81c;
  box-shadow: 0 0 4px rgba(255, 184, 28, 0.6);
}

/* Error messages */
.error {
  font-size: 13px;
  color: #d9534f;
  margin-top: 4px;
}

/* CAPTCHA Section */
.captcha-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 10px;
}

.captcha-content {
  display: flex;
  align-items: center;
  background: #f7f8fa;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 8px 12px;
}

.captcha-text {
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 18px;
  color: #002f6c;
  margin-right: 10px;
}

.refresh-captcha {
  background: #002f6c;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.refresh-captcha:hover {
  background: #ffb81c;
  color: #002f6c;
}

/* Buttons */
.form-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.btn {
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #002f6c;
  color: #ffffff;
}

.btn.primary:hover {
  background: #ffb81c;
  color: #002f6c;
}

.btn.secondary {
  background: #f4f4f4;
  color: #002f6c;
  border: 1px solid #cccccc;
}

.btn.secondary:hover {
  background: #ffb81c;
  color: #002f6c;
}

/* Icons */
#lockIcon {
  position: absolute;
  right: 10px;
  top: 38px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .branch-search-form {
    padding: 20px;
  }
}
/*radio button*/
.radio-group {
  display: flex;
  gap: 20px;
  margin: 25px 0px 25px 0px;
}

.radio-item {
  display: flex;
  align-items: center;
}

.radio-item input[type=radio] {
  margin-right: 8px;
  accent-color: #007bff; /* modern color for radio */
}

.radio-item label {
  font-size: 16px;
  cursor: pointer;
}

.error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}