/* Mobile View */
@media only screen and (max-width: 600px) {
  .desktop-view {
    display: none !important;
  }

  .mobile-view {
    display: block !important;
  }

  .typed-cursor {
    width: 20px;
    height: 20px;
    margin-bottom: -4px;
  }

  .btn-started {
    width: 175px;
    height: 45px;
    font-size: 16px;
    margin-top: 25px !important;
  }

  .scroll-icon {
    margin-top: 80px;
  }
}

/* Desktop View */
@media only screen and (min-width: 800px) {
  .desktop-view {
    display: block !important;
  }

  .input-clear-button:after {
    margin-left: 24px !important;
  }

  .mobile-view {
    display: none !important;
  }
}
