/* Smaller modal */
.modal_btn{
  cursor: pointer;
}
.modal-dialog {
  max-width: 500px; /* Reduced modal size */
}

/* .modal-body {
  padding: 1.5rem; 
} */

/* Input field styling */
.form-control {
  border: none !important;
  border-bottom: 0.5px solid #7f7f7f !important;
  padding: 0.8rem 0;
  box-shadow: none;
  transition: border-color 0.3s ease;
  font-size: 14px !important;
}

.form-control:focus {
  border-color: #0056b3;
  box-shadow: none;
}
.dil-tea-cup-pop {
  height: 100%;
}

/* Modern button style */
.btn-primary {
  font-size: 16px;
  border-radius: 5px;
  padding: 0.6rem 1.5rem;
  background-color: #5d3374;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Modal header - Remove border and add space */
.modal-header {
  border-bottom: none;
  padding-bottom: 10px;
}

.modal-body {
  background-color: #ffffff; /* Lighter background */
  border-radius: 15px;
}

/* Placeholder style */
.form-control::placeholder {
  color: #777;
  font-style: italic;
  opacity: 1; /* Ensure the placeholder is fully visible */
}

/* Responsive design for small screens */
@media (max-width: 768px) {
  .modal-dialog {
    max-width: 100%;
  }
  .dil-tea-cup-pop {
  width: 100%;
}
    .col-lg-6 {
    margin-bottom: 20px;
  }

  .modal-body {
    padding: 1rem;
  }
}
 