@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Benzin';
    src: url('/wp-content/themes/understrap-child-1.2.0/fonts/Benzin-Bold.ttf') format('truetype');
    font-weight: 700;
}

html, body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
}
body {
  min-height: 100vh;
}
#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Benzin', serif;
  font-weight: 700;
}
h2 {
  font-size: 2.5rem;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

.single-form {
  flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  .single-form-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    .iti {
      width: 100%;
      color: #000000;
    }
    input {
      display: block;
      width: 100%;
      height: 50px;
      padding: 0 20px;
      border-radius: 15px;
      background-color: #ffffff;
      color: #000;
      font-family: 'Benzin', sans-serif;
      font-size: 16px;
    }
    button {
      background-image: linear-gradient(0.028turn, rgba(3, 2, 252, 1) 0%, rgba(3, 2, 252, 1) 74%, rgba(133, 132, 255, 1) 100%);
      padding: 0px 15px;
      display: block;
      width: 200px;
      font-family: 'Benzin', sans-serif;
      font-weight: 600;
      font-size: 14px;
      height: 50px;
      margin-left: auto;
      margin-right: auto;
      border-radius: 15px;
      color: #fff;
      img {
        display: block;
        margin: 0 auto;
      }
      &:disabled {
        background-image: linear-gradient(0.028turn, rgba(3, 2, 252, 0.5) 0%, rgba(3, 2, 252, 0.5) 74%, rgba(133, 132, 255, 0.5) 100%);
        cursor: not-allowed;
      }
    }
  }
}
.single-form-card {
  background-color: #101010;
  padding: 40px 60px;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  .single-form-card-call {
    font-size: 25px;
    color: #b1b1b1;
  }
  .single-form-card-price {
    font-size: 66px;
    font-family: 'Benzin', sans-serif;
    color: #ffd77a;
  }
  .single-form-card-image {
    margin: 0 auto 20px;
  }
  .single-form-card-description {
    font-size: 18px;
    color: #b1b1b1;
    margin-bottom: 60px;
    p {
      margin-bottom: 16px;
    }
  }
}
.single-form-footer {
  background-color: #101010;
  font-size: 15px;
  color: #fff;
  text-align: center;
  padding: 35px 0 45px;
  .single-form-footer-link {
    color: #ff8562;
    text-decoration: none;
    &:hover {
      color: #ff8562;
      text-decoration: underline;
    }
  }
  .single-form-footer-note {
    margin-top: 8px;
    color: #404040;
    line-height: 1;
  }
}