.ifsc-container {
  max-width: 500px;
  margin: 30px auto;
  padding: 0;
  background: transparent; /* match screenshot's clean look */
  box-shadow: none;
  font-family: 'Segoe UI', sans-serif;
}

.ifsc-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: row;
  max-width: 600px;
  margin: 15px;
}

.ifsc-input {
  flex: 1; /* fill available space */
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #0073aa;
  border-radius: 4px;
  outline: none;
}

.ifsc-input::placeholder {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ifsc-btn {
  background: #0073aa;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}

.ifsc-btn:hover {
  background: #005f8c;
}

@media (max-width: 480px) {
  .ifsc-form {
    flex-direction: column;
    gap: 8px;
  }
  .ifsc-input,
  .ifsc-btn {
    width: 70%;
  }
}
