@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Poppins&family=Roboto&display=swap');
body {
    font-family: 'Poppins',sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #232F3E;
    text-align: center;
}

.content{
    width: 85%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
}

.header img {
    width: 170px;
    padding: 10px;
}

.subtitle {
    font-size: 18px;
    color: #888;
    margin-left: 10px;
}

.balance {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    justify-content: space-between; /* Makes sure there's space between the text and value */
    background-color: #6E7C88;
    padding: 10px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 4px 6px 20px 0px rgba(0, 0, 0, 0.12);
}

.balance p {
    font-size: 16px;
    margin: 0; /* Removes excess margin */
    color: #fff;
}

.value {
    display: flex;
    align-items: center; /* Vertically center the value */
}

.value p {
    font-size: 22px;
    padding: 10px 20px; /* Adds more padding for the value box */
    background-color: #3CAB59;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    box-shadow: 4px 6px 20px 0px rgba(0, 0, 0, 0.12);
    margin: 0; /* Removes excess margin */
}


.message {
    color: #fff;
    margin: 20px 0;
}

.text-primary{
    font-size: 25px;
    font-weight: 600;
}

.text-secondary{
    font-size: 17px;
}

.congratulations {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    box-shadow: 4px 6px 20px 0px rgba(0, 0, 0, 0.12);
}

.content-text{
    margin-bottom: 20px;
}

.cta-button {
    background-color: #3CAB59;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    margin: 20px 0;
}

.cta-button:hover {
    background-color: #0056b3;
}

.footer {
    margin-top: 20px;
}

.footer img{
    width: 50px;
}

.footer a {
    color: #007BFF;
    text-decoration: none;
    font-size: 12px;
    margin: 5px 0;
    display: block;
}

.footer p {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}
