<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$black: #343c41;
$white: #ffffff;
$blue: #1b9cfc;
$green: #53ce67;

* {
  box-sizing: border-box;
}



img {
  max-width: 100%;
  height: auto;
}

p {
  margin: 12px 0;
}

.heading {
  font-size: 22px;
  font-weight: 700;
  text-align:center;
  color: #1A522D;
}

.subheading {
  font-size: 12px;
  line-height: 24px;
  color: #FBB044;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input {
  width: auto;
  padding: 10px 8px;
  border: 1.5px solid lighten($black, 60%);
  border-radius: 4px;
  text-align: center;
  transition: all .4s linear;
  
  &amp;::placeholder {
    opacity: 0.35;
  }
  
  &amp;:focus,
  &amp;:hover,
  &amp;:valid {
    outline: none;
    border: 1.5px solid lighten($blue, 30%);
  }
}

.btn {
  padding: 12px 32px 12px 32px;
  background-color: $blue;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: $white;
  border: none;
  border-radius: 6px;
  transition: all .4s ease-in-out;
  opacity: 0.40;
  cursor: pointer;
  
  &amp;--active {
    animation: buttonActive .3s both;
  }
  
  &amp;--success {
    animation: buttonSuccess .4s both;
  }
  
  &amp;:focus {
    outline: none;
  }
}

.subscribe {
  display: flex;
  flex-direction: column;
  align-items: center;
 

  
  
  &amp;__image {
    position: relative;
    max-width: 80px;
    margin: 50px 10px 0;
    
    &amp;--success:after {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 26px;
      height: 26px;
      background-image: url('https://user-images.githubusercontent.com/23297041/53911760-6c581880-4068-11e9-90ab-ac45ae3b4aa8.png');
      background-size: cover;
      content: '';
      animation: slideUp .3s ease-out;
    }
  }
  
  &amp;__text {
    max-width: 300px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  &amp;__input {
    min-width: 250px;
    margin-bottom: 15px;
  }
  
  &amp;__btn {
    width: 180px;
  }
}


@keyframes buttonActive {
  to {
    transform: translateY(-1px);
    opacity: 1;
  }
}

@keyframes buttonSuccess {
  from {
    opacity: 1;
  }
  to {
    width: 230px;
    background-color: $green;
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(15px);
  }
}

@media screen and (max-width: 680px) {
  .subscribe {
    min-width: 150px;
  }
}</pre></body></html>