/* Login help styles */

.help-button {
  position: fixed;
  top: 20px;
  right: 300px;
  background-color: #33b250;
  color: white;
  border: none;
  border-radius: 8px;
  width: 100px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.spacer {
  margin-right: 3px;
}

.help-button:hover {
  background-color: #2da04a;
}

.help-button:focus {
  outline: none;
}

.help-button .fa {
  margin-right: 5px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  margin-top: 150px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ceo-flush {
  background-color: #3a4051;
  margin-top: -21px;
  margin-left: -20px;
  text-align: center;
  color: white;
  width: 109%;
  height: 60px;
}

.insideh1 {
  text-align: left;
  margin-left: 25px;
  margin-top: -10px
}

#selected_value {
  font-size: 16px;
  color: #333;
}

g-recaptcha {
  margin: auto;
  display: inline-block;
}

.ceorequest {
  text-align: left;
  margin-left: 140px;
}

.custom-alert {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fefefe;
  color: #333;
  border: 1px solid #ccc;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-family: sans-serif;
  display: flex;
  gap: 10px;
  align-items: center;
}

.custom-alert button {
  padding: 5px 12px;
  border: none;
  background: #218838;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.custom-alert button:hover {
  background: #28a745;
}