 body {
        margin: 0;
        padding: 0;
        background: #07002c;
        font-family: Arial, sans-serif;
        color: white;
        text-align: center;
    }

   

    h2{
        font-size: 14px;
    }

    .header {
       display: block;
align-items: center;
height: 40px;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
background-color: rgb(0, 33, 91);
    }

    .icon-logo{
        display: flex;
align-items: center;
width: 50%;
float: left;
    }

    .header img {
        width: 35px;
        margin-right: 10px;
    }

    .balance-area {
        margin-top: 20px;
    }

    .balance-box {
        display: inline-flex;
        align-items: center;
        background: #1e0b64;
        padding: 0px 30px 0px 0px;
        border-radius: 30px;
        border: 2px solid #ffcc45;
        font-size: 20px;
        font-weight: bold;
    }

    .balance-box img {
        width: 35px;
        margin-right: 10px;
    }

    .grid {
        width: 90%;
        margin: 10px auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .amount-btn {
        background-image: url(../img/Select-Yellow-Button.png);
        background-size: contain;
        background-repeat: no-repeat;
        padding: 66px 0px 10px 0px;
        font-size: 18px;
        font-weight: bold;
        color: #000;
        border: 4px solid transparent;
        cursor: pointer;
        transition: 0.3s;
        border-radius: 25px;
    }

    .amount-btn img {
        width: 35px;
        display: block;
        margin: 0 auto 10px;
    }

    .selected {
        background-image:url(../img/Select-Green-Button.png);
        /* background: #00ff6a !important; */
        /* border-color: #00a54f !important; */
    }

    .info {
       width: 85%;
margin: 20px auto;
font-size: 14px;
line-height: 18px;
color: #dcdcdc;
text-align: left;
    }

    .continue-btn {
       background: #00d142;
color: white;
font-size: 20px;
padding: 10px 30px;
border-radius: 6px;
border: none;
margin: 10px auto;
cursor: pointer;
font-weight: bold;
    }

    

    .redHeader {
        display: flex;
        align-items: center;
        padding: 20px;
        font-size: 25px;
        font-weight: bold;
    }
    .redHeader img {
        width: 33px;
        margin-right: 10px;
    }

    /* BALANCE BOX */
    .redBalanceCard {
      width: 80%;
margin: 20px auto;
background: #1a0860;
padding: 15px;
border-radius: 15px;
border: 2px solid #3e1cc7;
    }

    .redBalanceBox {
        display: inline-flex;
        align-items: center;
        background: #1e0b64;
        padding: 0px 20px 0px 0px;
        border-radius: 30px;
        border: 2px solid #ffcc45;
        font-size: 16px;
        font-weight: bold;
        float: right;
    }
    .redBalanceBox img {
         width: 25px;
        margin-right: 10px;
    }

    .redAmountInput {
       width: 100%;
font-size: 20px;
padding: 6px 0px;
margin-top: 15px;
background: transparent;
border: none;
border-bottom: 2px solid #ffcc45;
color: #ffcc45;
outline: none;
    }

    /* SECTION TITLE */
    .redSectionTitle {
        text-align: center;
        font-size: 20px;
        margin: 20px auto;
        letter-spacing: 1px;
    }

    .redDivider {
        width: 80%;
        height: 2px;
        background: white;
        margin: 10px auto 20px auto;
        opacity: 0.2;
    }

    /* METHOD SELECTOR */
    .redMethodContainer {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 20px;
    }
    .redMethodBox {
        display: flex;
        align-items: center;
        font-size: 20px;
        cursor: pointer;
    }
    .redCheckBox {
        width: 28px;
        height: 28px;
        border: 3px solid white;
        margin-right: 10px;
        border-radius: 5px;
    }
    .redActive {
        background: #00d142;
        border-color: #00d142 !important;
    }

    /* INPUT FIELDS */
    .redInputLabel {
   width: 85%;
margin: 10px 25px;
font-size: 12px;
color: #ff8d2e;
font-weight: bold;
text-align: left;
    }

    .redInputField {
       width: 85%;
margin: auto;
display: block;
background: #fff;
border-radius: 10px;
font-size: 14px;
padding: 12px;
border: none;
outline: none;
margin-bottom: 15px;
    }

    #responsePanel{
      position: absolute;
width: 100%;
bottom: 0px;
background-color: #fff;
height: 400px;
z-index: 200;
display: none;
color: black;
    }

    .timerPanel{
        position: relative;
width: 100%;
height: 100%;
    }
    .timerPanel a{
        text-decoration: none;
padding: 10px 14px;
background-color: rgb(0, 162, 3);
color: white;
font-size: 20px;
border-radius: 5px;

width: 150px;
    }
    .mar{
        margin-top: 150px;
    }
    #timer{
        
font-size: 70px;
margin-bottom: 40px;
    }
   

    /* BUTTON */
    .redContinueBtn {
       background: #00d142;
padding: 10px 25px;
border-radius: 5px;
font-size: 20px;
margin: 20px auto;
display: block;
color: white;
font-weight: bold;
border: none;
cursor: pointer;
    }

    /* FOOT NOTE */
    .redFootNote {
        text-align: center;
        font-size: 16px;
        opacity: 0.8;
        margin-bottom: 30px;
    }