html, body {
      height: 100%;
      min-height: 100%;
    }
    body {
      font-family: Inter, 'Noto Sans', sans-serif;
      background: #fff;
      margin: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    .rt-footer-logo {
        background: #f8f8f8;
        border: 1px solid hsla(0, 7%, 88%, .53);
        border-radius: 20px;
        display: inline-block;
        font-size: 12px;
        padding: 4px 8px 5px 10px;
    }

    .primary-btn, .hs-button {
        background: linear-gradient(117.2deg, #ef9b66, #e2617a, #e2617a, #ef9b66);
        background-size: 200%;
        background-position: left;
        transition: background-position 0.3s ease-in-out;
        box-shadow: none;
        font-size: 1em;
        border-radius: 2em;
        padding: 1em 2em;
        font-weight: bold;
        color: #fff;
        border: none;
    }

    .primary-btn:hover, .hs-button:hover {
        background-position: right;
        cursor: pointer;
    }
    .primary-btn:disabled, .hs-button:disabled {
        background: #f4f2f0;
        cursor: not-allowed;
        color: #b0a99f;
    }

    footer {
        background: #fff;
        border-top: 1px solid #f4f2f0;
        padding: 1em 0;
        text-align: center;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #fff;
        flex-shrink: 0;
    }
    header{
        display: flex;
        align-items:center;
        justify-content:space-between;
        padding:1em 3em;
        border-bottom:1px solid #f4f2f0;
        background-color: #fff;
        flex-shrink: 0;
    }
    main {
        background-image: url('/img/bg.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex: 1;
        flex-flow: column nowrap;
        display: flex;
        align-items: center;
        justify-content: start;
        overflow-y: auto;
        min-height: 0;
    }

    .banner {
        min-height: 260px;
        margin: 20px 0;
    }

    .banner-image {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }