.modal-content {
  width: 100%; /* Ensure full width on mobile */
  margin: 0;
  border-radius: 10px; /* Rounded corners for modal */
}

.modal-body {
  padding: 0;
}

.btn-close {
  position: absolute;
  right: 0;
  padding: 1em;
}

.modal-title {
  font-size: 1.8em; /* Smaller for better mobile fit */
  font-weight: bold;
  color: #007bff; /* Primary color for the title */
  margin-bottom: 1em; /* Spacing below the title */
}

.myform {
  padding: 2em;
  max-width: 100%;
  color: #333; /* Dark text for light background */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
  border-radius: 10px; /* Rounded corners */
}

@media (max-width: 576px) {
  .myform {
      padding: 1.5em; /* Reduce padding on mobile for better fit */
      border-radius: 10px; /* Maintain rounded corners */
  }

  .modal-title {
      font-size: 1.5em; /* Adjust heading size for mobile */
  }

  .form-control {
      padding: 0.5em; /* Adjust padding for inputs */
  }
}

.form-control:focus {
  box-shadow: inset 0 0 0 2px #007bff; /* Blue focus shadow */
  border-color: #007bff; /* Change border color on focus */
}

.form-control {
  background-color: #f8f9fa; /* Light background */
  color: #333; /* Dark text */
  padding: 0.75em; /* Added padding for better touch area */
  border: 1px solid #ced4da; /* Light border */
  border-radius: 5px; /* Slightly rounded corners */
  transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for focus */
  font-size: 1em; /* Uniform font size */
}

.form-control::placeholder {
  color: #aaa; /* Placeholder color */
  opacity: 1; /* Ensures full visibility */
}

.myform .btn {
  width: 100%;
  font-weight: 800;
  background-color: #007bff; /* Bootstrap primary color */
  border-radius: 5px; /* Rounded corners */
  padding: 0.75em; /* More padding for buttons */
  color: white; /* White text */
  transition: background-color 0.3s; /* Smooth transition on hover */
}

.myform .btn:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

.modal-info {
  text-align: center;
  padding-top: 2em;
  color: grey; /* Preserve the existing design color */
}

.modal-info a {
  color: #007bff; /* Link color */
  text-decoration: none;
}

.modal-info a:hover {
  color: #0056b3; /* Darker link color on hover */
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

