.w-100 {
  width: 100%;
}
.mr-3 {
  margin-right: 4rem;
}
.pr-3 {
  padding-right: 4rem;
}
.d-flex {
  display: flex;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  height: auto;
  color: #b4b4b4;
  background-color: #ffffff;
  font-family: "Lato", sans-serif;
  border: 2px solid #dedede;
  border-radius: 4px;
  padding: 12px;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: #82aed1;
  outline: none;
  box-shadow: 0 0 0 2px rgba(130, 174, 209, 0.2);
}

.form-control:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.7;
}

select.form-control {
  height: auto;
  padding: 10px 12px;
}

.form-group label {
  color: #b4b4b4;
  font-size: 12px;
  font-weight: normal;
  font-family: "Verdana", sans-serif;
  margin-bottom: 5px;
  display: block;
}

.container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
}

.submit-btn {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #fe0200;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin: 1rem auto 0;
  display: block;
  padding: 14px;
}

.submit-btn:hover {
  opacity: 0.9;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #999;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h1 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #666;
  font-size: 14px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  .card {
    padding: 1rem;
  }
}

optgroup {
  font-weight: bold;
  color: #333;
  font-family: "Lato", sans-serif;
}

option {
  font-weight: normal;
  padding: 8px;
}
input {
  width: 95% !important;
}
.form-group {
  padding-top: 10px;
}
.form-group,
.form-control {
  margin-bottom: 0px !important;
}
.form-group label {
  display: none;
}

/* Add phone input specific styling */
input[type="tel"] {
  padding-left: 45px !important; /* Space for the prefix */
  position: relative;
}

/* Add a pseudo-element for the prefix */
.form-group:has(input[type="tel"])::before {
  content: "+91";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 14px;
  z-index: 1;
  pointer-events: none;
}

.form-group:has(input[type="tel"]) {
  position: relative;
}

/* Update phone input styling */
.phone-input-container {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.country-code {
  position: absolute;
  left: 12px;
  color: #333;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

.phone-input-field {
  padding-left: 45px !important;
}

.otp-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.otp-input {
  padding-left: 45px !important;
  border: 2px solid #dedede;
  border-radius: 4px;
  font-size: 14px;
}

.send-otp-btn,
.verify-otp-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #82aed1;
  color: white;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.2s;
  min-width: 100px;
  height: 42px;
}

.send-otp-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.phone-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
