* {
    border: none;
    margin: 0;
  }
  html {
    width: 100%;
    height: 100%;
    height: -webkit-fill-available;
    overflow: hidden;
  }
  body {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    }
  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 50vh;
    max-height: 600px;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}
.logo-container img {
    height: 100px;
}
.subtitle {
    color: #ADADAD;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}
.subscription-form {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.subscription-form label {
    display: block;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 14px;
    text-align: left;
}
.input-group {
    display: flex;
    justify-content: center;
    width: 100%;
}

.input-group input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border-radius: 4px 0 0 4px;
    background-color: #23262E;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.input-group input[type="email"]::placeholder {
    color: #ADADAD;
}

.input-group button {
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    background-color: #2D4568;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.input-group button:hover {
    background-color: #28365E;
}
button.bt-secondary {
  padding: 10px 20px;
  border-radius: 4px;
  background-color: #ED5F00;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

button.bt-secondary:hover {
  background-color: #c04c00; /* Darker orange for hover */
}
.link {
    color: #ADADAD;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    text-decoration: underline;
}
.email {
  color: #ADADAD;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;

  text-decoration: none;
  font-weight: normal;


}
.changing-text-container {
    text-align: center;
}
.changing-text {
    font-size: 24px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px; /* Fixed height to prevent layout shifts */
    opacity: 1;
    transition: opacity 0.7s ease-in-out;
}
.description {
    font-size: 14px;
    color: #8a8a8a;
    margin-top: 5px;
    transition: opacity 0.7s ease-in-out;
}
.footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #ADADAD;
    font-size: 14px;
    font-family: "Titillium Web", sans-serif;
}


.notification {
  position: fixed;
  top: -100px; /* Start off-screen */
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 20px;
  border-radius: 5px;
  color: white;
  text-align: center;
  transition: top 0.5s ease-in-out;
  z-index: 1000;
  background-color: #23262E;
  font-size: 14px;
}

.notification.show {
  top: 20px;
}

.notification-icon {
  font-size: 24px;
}
.notification-message {
  flex-grow: 1;
  margin-right: 5px;

}

.titillium-web-extralight {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.titillium-web-light {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.titillium-web-regular {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.titillium-web-semibold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.titillium-web-bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.titillium-web-black {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.titillium-web-extralight-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.titillium-web-light-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.titillium-web-regular-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.titillium-web-semibold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.titillium-web-bold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: italic;
}
