* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f6f9;
}

.btn-section {
  height: 30vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  width: 100%;
  padding: 40px;
  background-color: #fff;
}

/* Subscribe Button */
.subscribe-btn {
  padding: 12px 24px;
  background: #0054C0;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

/* Toast Container */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 16px 16px 20px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* Show Toast */
.toast.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/* Icon */
.toast-icon {
  width: 26px;
  height: 26px;
  background: #22C55E;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 16px;
}

/* Message */
.toast-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  color: #343A40;
}

/* Close Button */
.toast-close {
  cursor: pointer;
  font-size: 18px;
  color: #6c757d;
}

/* Progress Bar */
.progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #22C55E;
  width: 100%;
  border-radius: 0 0 8px 8px;
  -webkit-animation: progressAnim 4s linear forwards;
          animation: progressAnim 4s linear forwards;
}

@-webkit-keyframes progressAnim {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

@keyframes progressAnim {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
.a, .b, .c {
  height: 100vh;
  width: 100%;
}

.a {
  background-color: salmon;
}

.b {
  background-color: lightskyblue;
}

.c {
  background-color: lightsalmon;
}/*# sourceMappingURL=blog_success.css.map */