
/*body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("img/bg.jpg");
    background-size: cover;
    background-position: center;
}*/

header {
    text-align: center;
    padding: 0em;
}

#mainlogo {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically if needed */
    flex-direction: column;
    max-width: 100%;
    margin: 2em auto;
}

#logo {
    /*width: 75vw; 70% of the viewport width */
    max-width: 100%; /* Ensures the image is never more than 100% of its original size */
    height: auto; /* Keeps the aspect ratio of the image */
    /*margin-top: 10px;*/
}

#qr-image{
    width: 75vw; /* 70% of the viewport width */
    max-width: 100%; /* Ensures the image is never more than 100% of its original size */
    height: auto; /* Keeps the aspect ratio of the image */
    margin-top: 20px;
}

#exclamation_mark{
    width: 30vw; /* 70% of the viewport width */
    max-width: 100%; /* Ensures the image is never more than 100% of its original size */
    height: auto; /* Keeps the aspect ratio of the image */
    margin-top: 20px; 
}

#registration-form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 2em auto;
}

#registration-form label {
    display: block;
    margin: 0.5em 0 0.2em 0;
    font-weight: bold;
    color: #FF7900; /* Set the color of the label text */
}

#registration-form input {
    margin-bottom: 1em;
    padding: 0.5em;
    border: 1px solid #FF7900; /* Set the color of the input border */
    border-radius: 10px;
}

#submit-button {
    background: none;
    border: none;
    padding: 0;
    display: block;
    margin: auto;
}

.auth-info{
    color: black;            /* Sets text color to white */
    font-weight: bold;
    text-align: center;      /* Aligns text to the center */
    font-size: larger;
}

#submit-button {
    display: block;
    width: 60%;
    height: auto;
    margin: 0 auto; /* Centers the image */
    margin-top: 10px;
    cursor: pointer;
}

#footer-content {
    display: block;
    width: 85%;
    height: auto;
    margin: 0 auto; /* Centers the image */
    margin-top: 20px;
}

#footer-result {
    display: block;
    max-width: 350px;
    width: 95%;
    height: auto;
    margin: 0 auto; /* Centers the image */
    margin-top: 50px;
}

#footer {
    display: block;
    max-width: 350px;
    width: 90%;
    height: auto;
    margin: 0 auto; /* Centers the image */
    margin-top: 30px;
}

.error {
    color: red;
    font-size: 0.7em; /* Smaller font size */
}

@media (max-width: 768px) {
    #products {
        flex-direction: column;
    }
}
