/* Custom Styles for Register Loan Modal */
.modal-custom-loan {
  max-width: 500px;
}
.modal-title {
    font-size: 32px;
    line-height: 25px;
    font-weight: 600;
    color: #333333;
}
.section-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
}

.modal-custom-loan .modal-content {
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.modal-custom-loan .modal-header h1 {
  font-weight: 700;
  font-family: var(--bs-font-sans-serif); 
}

.section-title {
  color: #a0a0a0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Form Styles */
.modal-custom-loan .form-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #333333;
}

.modal-custom-loan .form-control,
.modal-custom-loan .form-select {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 10px 15px;
  color: #333;
  font-weight: 500;
}

.modal-custom-loan .form-control::placeholder {
  color: #ccc;
  font-weight: 400;
}

.modal-custom-loan .form-control:focus,
.modal-custom-loan .form-select:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 0 0.1rem rgba(255, 140, 0, 0.1);
}

/* Input Group cho VNĐ */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group .form-control {
  border-radius: 8px;
  padding-right: 60px; 
}

.input-group .input-group-text {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}
.select-wrapper {
  position: relative;
}

.modal-custom-loan .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}

/* .select-wrapper::after {
  content: '\F128';
  font-family: 'bootstrap-icons';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #ccc;
} */

.separator {
  border: 0;
  border-top: 1px solid #eaeaea;
}

.custom-radio .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #dcdcdc;
  margin-top: 0.2rem;
}

.custom-radio .form-check-input:checked {
  background-color: #fff;
  border-color: #ff8c00;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ff8c00'/%3e%3c/svg%3e");
}

.custom-radio .form-check-label {
  font-weight: 500;
  color: #333;
}

.input-icon-wrapper {
  position: relative;
}

.location-icon::after {
  content: url('../image/map-pin.png');
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #ccc;
}


.btn-orange:hover,
.btn-orange:active {
  background-color: #e67e00;
  color: #fff;
}