
input, button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}
button {
    background: #FCAF17;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background: #FCEE21;
}
.error {
    color: red;
    font-weight: bold;
}

 body {
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
            margin: 0;
            padding: 0;
        }
        .header {
            background-color: #0055b3;
            padding: 20px;
            text-align: center;
            border-bottom: 4px solid #FCAF17;
        }
        .header img {
            height: 50px;
        }
        header img {
            height: 50px;
        }
        .nav {
            background-color: rgb(29, 86, 167);
            padding: 10px;
            display: flex;
            align-content: center;
            justify-content: center;
        }
        .nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
        }
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 15px;
        }
        .member, .stats, .store-table, .reward-box, .carousel {
            background-color: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .reward-box {
              display: flex;
              flex-wrap: wrap;
              gap: 20px;
              margin-bottom: 30px;
        }
        
        
    
        .stats h3, .store-table h3, .reward-box h3, .carousel h3, .member h3 {
            margin-top: 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
        .reward-box button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        .carousel img {
            height: auto;
            border-radius: 10px;
            margin: 0px auto;
            max-width: 1000px;
        }
        .footer {
            text-align: center;
            font-size: 14px;
            color: #FFF;
        }
           header {
                width: 100%;
                height: 100%;
                background: url(/images/bg-nav-sm.png) no-repeat;
                background-size: cover;
                background-position: center;
                content: "";
                padding: 20px;
                text-align: center;
                background-color: #0055b3;
                border-bottom: 4px solid #FCAF17;
            }
        @media screen and (min-width: 992px) {
            header {
                display: block;
                width: 100%;
                height: 100%;
                background: url(/images/bg-nav-lg.png) no-repeat;
                background-size: cover;
                background-position: center;
                content: "";
                padding: 20px;
                text-align: center;
                background-color: #0055b3;
                border-bottom: 4px solid #FCAF17;
            }
        }
        
            header img {
                height: 50px;
            }


