body{ 
  font-family: Arial, sans-serif; 
} 
.popup { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0,0,0,0.6); 
  z-index: 9999; display: flex; 
  justify-content: center; 
  align-items: center; 
} 
.popup-content { 
  position: relative; 
  background: #fff; 
  padding: 20px; 
  border-radius: 12px; 
  width: 430px; 
  max-height: 570px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
  animation: fadeIn 0.5s ease-in-out; 
  text-align: left; 
} 
.main-text { 
  color: #d32a31; 
  font-weight: bold; 
  font-size: 20px; 
  margin-bottom: 10px; 
} 
.second-text { 
  font-size: 15px; 
  font-weight: 500; 
  color: black; 
  margin-bottom: 6px; 
} 
.popup-form { 
  display: flex; 
  flex-direction: column; 
  gap: 5px; 
  margin-top: 15px; 
} 
.form-control { 
  border: 1.5px solid rgb(112, 109, 109) !important; 
  width: 100% !important;
  border-radius: 7px!important; 
  padding: 8px; font-size: 14px; 
} 
.forms-control{ 
  border: 1.5px solid rgb(112, 109, 109) !important; 
  width: 100% !important; 
  border-radius: 10px; 
  padding: 8px; 
  font-size: 14px; 
} 
.text-label { 
  font-weight: bold; 
  text-align: left; 
  display: block; 
} 
.message { 
  height: 70px !important; 
} 
.buttons-div { 
  width: 100%; 
  display: flex; 
  flex-direction: row; 
  gap: 15px; 
} 
.close-btn { 
  position: absolute; 
  top: 10px; 
  right: 15px; 
  font-size: 22px; 
  font-weight: bold; 
  color: #555; 
  cursor: pointer; 
  transition: color 0.3s ease; 
} 
.email-link { 
  text-decoration: none; 
  color: black; 
  transition: color 0.3s ease; 
} 
.email-link:hover { 
  color: #f0262c;
  text-decoration: underline;  
} 
.close-btn:hover { 
  color: #d32a31; 
} 
.submit-btn { 
  padding: 10px 10px; 
  border-radius: 8px; 
  font-size: 16px; 
  cursor: pointer; 
} 
.submit-btn { 
  background: #d32a31; 
  color: #fff; flex: 1; 
  border: none; 
} 
.submit-btn:hover { 
  background: #f0262c; 
} 
.span{ 
  color: #d32a31; 
} 
@keyframes fadeIn { 
  from { 
    opacity: 0; 
    transform: scale(0.8); 
  } 
  to{ opacity: 1; 
    transform: scale(1); 
  } 
}
@media (max-width: 600px) {
  .popup-content {
    padding: 20px 15px;
    max-width: 90%;
    height: 610px;
  }
  .main-text {
    font-size: 18px;
  }
  .second-text {
    font-size: 14px;
  }
  .text-label {
  margin-top: 0px;
}
.message{
  margin-top: -10px!important;
}
.select_option{
  margin-top: -10px!important;
}
}
