body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #c0c6c6, #4a7dd5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h1 {
    margin: 5;
    color: #fff;
}
.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    position: relative;
}

input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

#qrcode {
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

#downloadBtn {
    position: absolute;
    right: 20px;
    bottom: 20px;
}


/* Footer Styles */
.footer {
    margin-top: 2rem;
    background: rgba(84, 83, 83, 0.8);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}
