html {
    background-color: #061831;
    background-image:
        url('resources/top-left.svg'),
        url('resources/top-right.svg'),
        url('resources/bottom-left.svg'),
        url('resources/bottom-right.svg');
    background-position:
        top left,
        top right,
        bottom left,
        bottom right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

@media (max-width: 768px) {
    html {
        background-image:
            url('resources/top-left.svg'),
            url('resources/bottom-left.svg');
        background-position:
            top center,
            bottom center;
        background-size: 100% auto, 100% auto;
    }

    .container {
        padding: 10px;
    }

    .user-info p,
    .inclusion-info p {
        width: 100% !important;
    }
}

body {
    font-family: "Baloo 2", sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
}

.container {
    padding: 30px;
    align-items: center;
    text-align: center;
}

h2 {
    font-weight: 800;
    font-size: 24;
    color: #F7A829;
}

p {
    color: white;
    font-weight: 400;
    font-size: 16;
    text-align: left;

    .details {
        font-weight: 800;
        font-size: 24;
        text-align: right;
    }
}

h3 {
    color: #F7A829;
    font-weight: 800;
    font-size: 18;
}



.user-info {
    padding: 15px 5px 0px 5px;
    margin-bottom: 0px;
}

.user-info p,
.inclusion-info p {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 65%;
    text-align: left;
    padding: 5px 0px;
    margin: 0 auto;
}

p .details {
    text-align: left !important;
}

#redemption-date {
    justify-content: center !important;
    text-align: center;
}

.inclusion-info {
    padding: 0px 5px 15px 5px;
    margin-top: 0px;
}

.redeem-btn {
    background: #EF553D;
    color: #061831;
    border: none;
    font-weight: 600;
    padding: 8px 24px;
    font-size: 14px;
    border-radius: 70px;
    cursor: pointer;
    margin-top: 20px;

    &:hover,
    &:active {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    &:disabled {
        background: #6c757d;
        cursor: not-allowed;
    }
}

.reset-btn {
    display: block;
    margin-top: 10px;
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
}

.success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.hidden {
    display: none;
}

#redeemed-card {
    align-items: center;
    text-align: center;
    vertical-align: center;
    display: none;
}

#redeemed-card img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

#redeemed-card span {
    font-weight: 800;
    font-size: 34px;
    color: #EF553D;
}

#redeemed-card p {
    text-align: center;
    margin: 5px 0;
}

#redeemed-card p span {
    font-weight: 800;
    font-size: 24px;
    margin: 0;
    color: white;
}

.version {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: #888888;
    font-size: 12px;
    z-index: 1000;
}