body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #222;
}

.container {
  max-width: 350px;
  margin: 0 auto;
  padding: 8px 8px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
}

.logo {
  background-color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  padding: 9px 0 0 0;
  width: 100%;
  border-radius: 2px;
  margin-bottom: 15px;
  margin-top: 8px;
  align-self: center;
  /* Sticky */
  position: sticky;
  top: 0;
  z-index: 100;
}

.title {
  font-size: 1.9rem;
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
  font-weight: 600; 
  font-family: 'Nunito', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5D2584;
}

.title i {
  margin-right: 10px;
  font-size: 1.2em;
}

.text {
  font-size: 1.0rem;
  margin-bottom: 32px;
  text-align: center;
  width: 100%;
  line-height: 1.5;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="email"] {
  width: 100%;
  padding: 12px;
  font-size: 1.2rem;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  margin-bottom: 18px;
  text-align: center;
  outline: none;
  box-sizing: border-box;
}

button {
  width: 100% !important;
  display: block;
  padding: 14px 0;
  background: #499698;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 32px;
}
button:active {
  background: #50b4b3;
}

#feedback {
  width: 100%;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback-message {
  background: #e6f4f7;
  color: #50b4b3;
  font-size: 1.2rem;
  padding: 24px 16px;
  border-radius: 2px;
  text-align: center;
}

.hidden {
  display: none !important;
}

@media (max-width: 400px) {
  .container {
    padding: 12px 2px 0 2px;
  }
  .logo {
    font-size: 1.1rem;
    padding: 12px 0;
  }
  .title, .blindtext {
    font-size: 1rem;
  }
  button, input[type="email"] {
    font-size: 1rem;
    padding: 10px 0;
  }
} 
/* Footer */

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin-bottom: 15px;
  margin-top: 45px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 15px;
}

.practice-name {
  font-weight: 500;
}

.status-icon {
  font-size: 0.8rem;
}

.status-live {
  color: #499698; 
}

.status-demo {
  color: #99660b; 
}