@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Roboto', 'Open Sans', 'Noto Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #202124;
}

body {
    /* background-image: linear-gradient(-45deg, rgb(90 74 255 / 15%) 0%, rgb(90 74 255 / 15%) 100%); 
    background-position: center;
    background-repeat: no-repeat;*/
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Noto Sans', Arial, sans-serif;
}

/* .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url(https://chatbotplugin.com/assets/img/front-pages/backgrounds/hero-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }   */

.noto-sans-900 {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 20px;
  padding-top: 8rem;
  box-sizing: border-box;
}

.logo {
    margin-bottom: 40px;
    color: #7367f0;
    text-align: center;
    width: 60%;
    max-width: 300px;
}

.logo img {
    width: 100%;
    height: auto;
}

.page-title {
    background: linear-gradient(to right, #28c76f, #5a4aff 47.92%, #ff3739);
    background-size: 200% auto;
    color: #0f172a;
    margin: 0 0 5px;
    font-size: 1.35rem;
    text-align: center;
    background-clip: text;
    line-height: 1.2;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s ease-in-out infinite alternate;
}

.page-subtitle {
    color: #444050;
    margin: 0 0 5rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 200;
    width: 80%;
    max-width: 450px;
}

@keyframes shine {
    0% {
        background-position: 0% 50%
    }

    80% {
        background-position: 50% 90%
    }

    to {
        background-position: 91% 100%
    }
}

.search-container {
  width: 100%;
  max-width: 500px;
}

.search-input {
  width: 100%;
  padding: 12px 25px;
  font-size: 16px;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  outline: none;
  box-sizing: border-box;
}

.search-input:hover,
.search-input:focus {
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  border-color: rgba(223, 225, 229, 0);
}

.buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
    background-color: #7367f0;
    border: none;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    font-family: 'Inter', 'Roboto', 'Open Sans', 'Noto Sans', Arial, sans-serif;
    box-shadow: 0 .125rem .375rem #7367f04d;
    border-radius: 5px;
    line-height: 27px;
    min-width: 54px;
    user-select: none;
}

.button:hover {
    background-image: linear-gradient(100deg, rgba(30, 27, 75, 0) 0%, rgba(15, 23, 42, 0.5) 100%);
    background-blend-mode: soft-light;
}

.card {
  display: none;
  border-radius: 5px;
  font-family: 'Noto Sans', sans-serif;
  position: relative;
  margin: 20px auto;
  background-color: #f8f9fa;
  border: 1px solid #dadce0;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

.card-body {
    padding: 15px;
    background-color: #f0f0f0;
    color: #7367f0;
    font-size: 15px;
}

.card-header {
    padding: 10px 15px;
    background-color: #ffffff;
    border-radius: 5px 5px 0 0;
    font-size: 15px;
}

.card-footer {
    padding: 10px 15px;
    background-color: #ffffff;
    border-radius: 0 0 5px 5px;
    color: #52525b;
    font-size: 14px;
}

.card p {
  margin: 0;
}

.card a {
  color: #7367f0;
  text-decoration: none;
  word-break: break-all;
}

.copy-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #7367f0;
}

.alert-success {
    display: none;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid green;
    border-radius: 5px;
    background-color: #28c76f;
    color: #ffffff;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.alert-error {
    display: none;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #b12628;
    border-radius: 5px;
    background-color: #ff3739;
    color: #ffffff;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.arrow {
    position: relative;
    width: 100%;
  max-width: 600px;
}

.arrow p {
    text-align: right;
    font-family: cursive;
    font-style: italic;
}

.arrow img {
    position: absolute;
    width: 100px;
    top: 0;
    right: -130px;
}

@media (max-width: 600px) {
  body, html {
    font-size: 14px;
  }

  .search-input {
    padding: 10px 20px;
  }

  .button {
    font-size: 12px;
    padding: 0 12px;
    height: 32px;
    min-width: 48px;
  }

  .card {
    padding: 10px;
  }
  .arrow {
    display: none;
  }
}