:root {
    --sec: #9aa1a9;
    --background: #141b2d;
    --mod:#1f2941;
    --brightText:#fff;
    --text:#9ba6b7;
    --themeColor:#6771fa;
    --border:#1f2941;
    --btnColor:#484faf;
    --btnTextColor:#fff;
    --input:#1f2941;
    --logo: url('/img/mv-logo-light.png');
    --inputBorder:#1f2941;
    --shadow:none;
    --reverseIco: #fff;
    --ico:#222;
    --borderRadius:4px;
    --sidebar:#141b2d;
    --head:#141b2d;
    --reverseText:#fff;
    --mainBar:#34397d;
    --subBar:#A0A0A0;
    --hoverBackground:#192134;
    --greenShadow:rgba(0, 240, 0, 0.2);
    --themeShadow:rgba(127, 17, 224, 0.2);
    --green:#22cd85;
    --warnColor:#f74245;
  }
    
html, body{
    background:var(--background);
    height:100%;
    width:100%;
    font-weight:bold;
    font-family: "Inter Tight", sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}

.input{
    background: var(--input);
    border: none;
    border-radius: 4px;
    outline: none;
    color: var(--text) !important;
    padding: 10px 20px;
    width: 100%;
    font-weight: 400 !important;
    border:1px solid var(--mod);
    letter-spacing: 1px;
}

.left-pane{
    position: fixed;
    left: 0;
    top: 0;
    width: 40vw;
    height: 100vh;
}

.right-pane{
    position: fixed;
    right: 0;
    top: 0;
    width: 60vw;
    height: 100vh;
}

.meetings-iframe-container{
    margin-top:10vh;
}

.stripe-qr{
    width: 50%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 20vh;
}

.logo-box{
    width: auto;
    margin: auto;
    position: absolute;
    left: 20%;
    right: 0;
    top: 18vh;
}

.rp-text{
    position: relative;
    top: 84px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.qr-logo{
    width: 200px;
    left: 20px;
    position: fixed;
    top: 20px;
}

stripe-buy-button{
    margin-left:20px;
}

.lp-text{
    color: #fff;
    font-weight: bold;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    margin-left: 10px;
}


@media only screen and (max-width: 900px) {
    .right-pane {
        position: relative;
        right: 0;
        top: 0;
        width: unset;
        height: unset;
        margin-top: 600px;
    }

    .left-pane{
        position: unset;
        left: unset;
        top: unset;
        width: unset;
        height: unset;
    }

    .logo-box {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh; /* Optional: to center vertically and horizontally */
        top: 0;
      }
      
      stripe-buy-button {
        --stripe-buy-button-background-color: #3c4df9;
        --stripe-buy-button-color: white;
        --stripe-buy-button-padding: 12px 24px;
      }

      stripe-buy-button {
        margin-left: unset;
    }

    .qr-logo {
        width: 200px;
        left: 0;
        position: fixed;
        top: 20px;
        right: 16px;
        margin: auto;
    }
}