html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


div, body, input, table, select, textarea {
        font-size:13px;line-height:18px;color:#BABCBA;
       font-family: "Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
       -webkit-font-smoothing:antialiased;
       -moz-osx-font-smoothing:grayscale;
       font-smoothing:antialiased;
       box-sizing:border-box;
}

html, body {
            margin: 0;
            padding: 0;
            color: #BABCBA;
            background: url("/images/Docucore_BG_1.png") no-repeat center center fixed;
            background-size: cover;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            /*background-color: rgba(0, 0, 0, 0.5);*/
        }
        header img {
            height: 40px;
        }
       
    .content {
      position: absolute;
      top: 20%;
      right: 50px;
      width: 50%;
      padding: 2rem;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 4px;
    }

    
    .cta-button {
      display: block;
      margin: 1rem auto 6rem auto;
      padding: 1.5rem 3rem;
      border-radius: 4px;
    background-color: #BC6B34;
    border: solid 1px #BC6B34;
    color: white;
      font-weight: normal;
      font-size: 1rem;
      text-decoration: none;
      text-align: center;
      width: fit-content;
      box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }
    .cta-button:hover {
      background-color: rgb(188,107,52, 0.8);
      transform: scale(1.05);
    }
    
    .cta-link-small {
      display: block;
      margin: 1rem auto;
      font-size: 1rem;
      text-align: center;
      color: white;
      opacity: 0.8;
      text-decoration: underline;
    }
    h1 {
      font-size: 2.2rem;
      font-weight:normal;
      line-height:2.8rem;
      margin-bottom: 1rem;
    }
    p {
      font-size: 1.2rem;
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }
    ul {
      columns: 2;
      padding-left: 1rem;
      font-size: 1rem;
    }
    li {
      margin-bottom: 0.5rem;
    }
    @media (max-width: 768px) {
      ul {
        columns: 1;
      }
      .content {
        width: 100%;
        right: 0px;
        border-radius: 0;
        position: static;
        margin: 2rem 0;
      }
    }