#newsletterForm {
  max-width: 100%;
  margin: 0 auto;
}

.newsletter-card {
  text-align: center;
}

.newsletter-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.floating-group {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.floating-group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border-radius: 8px;
  border: none;
  outline: 0;
  background: #fff;
  color: #000;
  font-size: 16px;
}

.floating-group label {
  position: absolute;
  top: 12px;
  left: 40px;
  color: #555;
  pointer-events: none;
  transition: .2s;
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label {
  top: -10px;
  left: 35px;
  font-size: 12px;
  background: #3264c8;
  color: #fff;
  padding: 0 3px;
  border-radius: 4px;
}

.floating-group .icon {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #3264c8;
  font-size: 16px;
}

.newsletter-btn {
  background: #fff;
  color: #3264c8;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  min-width: 60px;
}

.newsletter-btn:hover {
  background: #e3e3e3;
}

.newsletter-msg {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 700;
}

.newsletter-msg.ok {
  color: #42ff8c;
}

.newsletter-msg.err {
  color: #ffb3b3;
}

@media (max-width: 600px) {
  .newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }
}
