body {
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .logo img {
    max-width: 80%;
  }
}

footer {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
  width: 100%;
  flex-shrink: 0;
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #007bff;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 999;
  cursor: pointer;
}


@media (max-width: 650px) {
  .floating-button {
    bottom: 90px;
  }
}


.floating-button:hover {
  background-color: #0056b3;
}

.floating-button:hover i {
  display: none;
}

.floating-button:hover::after {
  content: "\f003";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.recaptcha-container {
  display: flex;
  flex-direction: row;
}

.recaptcha-container .form-group {
  flex-grow: 1;
}

#recaptchaContainer {
  float: left;
}
