* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

html,
body {
  height: 100%;
  margin: 0;
}

.content {
  flex: 1;
  /* pushes footer to bottom */
}

.footer {
  background-color: #f8f9fa;
  padding: 10px 0;
}

#cloud {
  position: fixed;
  /* stays relative to viewport */
  left: 50%;
  /* horizontal center */
  transform: translateX(-50%);
  height: auto;
  max-width: none;
  pointer-events: none;
  z-index: 999;
  transition: transform 0.2s ease-out;
  /* smooth movement */
}

.stay-connected {
  font-weight: 900;
  /* bold */
  font-size: 3rem;
  /* similar to display-5 */
  color: #e95420;
  /* orange/red */
  text-shadow: -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff,
    3px 3px 0 #fff;
  /* white outline effect */
}

.coupon-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 460px;
  margin: 20px auto;
}

.brand-logo {
  margin-right: 15px;
  font-weight: bold;
  color: #f26522;
  /* NeoCare brand color */
  font-family: "Arial", sans-serif;
  text-align: center;
  line-height: 1;
}

.brand-logo span {
  font-size: 12px;
  color: gray;
}

.vertical-line {
  width: 3px;
  height: 20px;
  background-color: #ccc;
  margin-right: 3px;
}

.coupon-input {
  border: none;
  outline: none;
  flex-grow: 1;
  padding: 8px 12px;
  font-size: 20px;
}

.coupon-input::placeholder {
  color: #999;
}

.submit-btn {
  background-color: #f26522;
  border: none;
  border-radius: 50px;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #e55d1f;
}

.coupon-input::-webkit-input-placeholder {
  font-size: 20px;
}

.coupon-input::-moz-placeholder {
  font-size: 20px;
}

.coupon-input:-ms-input-placeholder {
  font-size: 20px;
}

.coupon-input::placeholder {
  font-size: 20px;
}

@media (max-width: 768px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
  }

  body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
  }

  html,
  body {
    width: 100%;
    margin: 0;
  }

  .content {
    flex: 1;
    /* pushes footer to bottom */
  }

  .footer {
    background-color: #f8f9fa;
    padding: 10px 0;
  }

  #cloud {
    position: fixed;
    /* stays relative to viewport */
    left: 50%;
    /* horizontal center */
    transform: translateX(-50%);
    height: auto;
    max-width: none;
    pointer-events: none;
    z-index: 999;
    transition: transform 0.2s ease-out;
    /* smooth movement */
  }

  .stay-connected {
    font-weight: 900;
    /* bold */
    font-size: 3rem;
    /* similar to display-5 */
    color: #e95420;
    /* orange/red */
    text-shadow: -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff,
      3px 3px 0 #fff;
    /* white outline effect */
  }

  .coupon-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 2px 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 460px;
    margin: 20px auto;
  }

  .brand-logo {
    margin-right: 15px;
    font-weight: bold;
    color: #f26522;
    /* NeoCare brand color */
    font-family: "Arial", sans-serif;
    text-align: center;
    line-height: 1;
  }

  .brand-logo span {
    font-size: 12px;
    color: gray;
  }

  .vertical-line {
    width: 3px;
    height: 20px;
    background-color: #ccc;
    margin-right: 3px;
  }

  .coupon-input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 8px 12px;
    font-size: 20px;
  }

  .coupon-input::placeholder {
    color: #999;
  }

  .submit-btn {
    background-color: #f26522;
    border: none;
    border-radius: 50px;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.3s;
  }

  .submit-btn:hover {
    background-color: #e55d1f;
  }

  .coupon-input::-webkit-input-placeholder {
    font-size: 20px;
  }

  .coupon-input::-moz-placeholder {
    font-size: 20px;
  }

  .coupon-input:-ms-input-placeholder {
    font-size: 20px;
  }

  .coupon-input::placeholder {
    font-size: 20px;
  }
}
