/* General Styling */
body {
    background-color: #000 !important; /* Force black background */
}


body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fff !important; /* Ensure black background */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h2 {
    color: rgb(145, 114, 33);
}

/* Main Container */
.container {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Ensures content is centered */
    text-align: center;
    margin: auto;
    margin-top: 20px;
    width: fit-content; /* Ensures container wraps around content */
}



/* Logo */
.logo {
    width: 100%;
    max-width: 250px;
    margin-bottom: 5px;
}

/* Message */
.message {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
}

/* Button Container */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-container a:last-child {
    margin-bottom: 0;
}

/* Buttons */
.button, button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: rgb(145, 114, 33); /* Panthers Red */
    text-decoration: none;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
    margin-top: 30px;
}

.apple {
    margin-bottom: -40px;
}

.button:hover, button:hover {
    background-color: #fff;
    padding: 20px 35px;
    color: black;
    border: 1px solid rgb(145, 114, 33);
}

/* Apple and Google Wallet Buttons */
.button-image {
    width: 200px;
    height: auto;
    cursor: pointer;
}

/* QR Code Button */
#view-qr-button {
    background-color: rgb(145, 114, 33);
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    padding: 15px 30px;
    cursor: pointer;
    width: 100%; /* Make it responsive */
    max-width: 200px; /* Prevent it from getting too wide */
    text-align: center;
}

/* Hover Effect */
#view-qr-button:hover {
    background-color: #fff;
    padding: 20px 35px;
    color: black;
    border: 1px solid rgb(145, 114, 33);
}

/* Mobile Optimization */
@media screen and (max-width: 480px) {
    #view-qr-button {
        width: 80%; /* Adjust width for smaller screens */
        max-width: 80%; /* Prevent overflow */
    }
}


/* Forms */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    margin: auto; /* Ensures proper centering */
}


input {
    width: 90%;
    padding: 12px;
    font-size: 16px;
    border: 3px solid rgb(145, 114, 33);
    background-color: #fff;
    color: black;
    border-radius: 5px;
    outline: none;
}  


input::placeholder {
    color: #bbb;
}

/* Back Button */
.back-button {
    display: inline-block;
    font-size: 18px;
    margin-top: 15px;
    padding: 15px 30px;
    background-color: rgb(145, 114, 33); /* Panthers Red */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    width: 200px;text-align: center;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
    text-align: center;
    margin: auto;
    flex-direction: column;
    align-items: center;
    
}

.back-button:hover {
    text-decoration: underline;
}

/* Mobile Optimization */
@media screen and (max-width: 480px) {
    body {
        display: block;
        padding: 10px;
        margin: 0;
        height: auto;
    }

    .container {
        width: 80%;
        margin: 0 auto;
        padding: 10px;
        max-width: 400px;
    }

    .button, button, .button-image, #view-qr-button {
        width: 100%;
    }
    
    .button-image {
        width: auto;
        height: 100px;
        cursor: pointer;
}
}

/* Header */
header {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Change from fixed to relative */
    top: 0;
}


/* Header Logo */
.header-logo {
    max-width: auto;
    height: 200px;
}

/* Footer */
footer {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto; /* Pushes footer to bottom */
}


/* Footer Logo */
.footer-logo {
    max-width: auto;
    height: 200px;
}

/* Style the label to make the checkbox larger and clearer */
.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

/* Hide default checkbox */
.custom-checkbox {
    appearance: none;
    width: 20px;  /* Bigger checkbox */
    height: 20px; /* Bigger checkbox */
    border: 2px solid #000;  /* Dark border */
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin-right: 10px; /* Space between checkbox and text */
    position: relative;
    background-color: white; /* Make sure background is white */
}

/* Style when checkbox is checked */
.custom-checkbox:checked {
    background-color: #007bff;  /* Blue background when checked */
    border: 2px solid #0056b3;  /* Darker border */
}

/* Add a checkmark when checked */
.custom-checkbox:checked::after {
    content: '✔';  /* Unicode checkmark */
    font-size: 14px;
    color: white;
    position: absolute;
    top: 1px;
    left: 3px;
}
