@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    background-color: #0052ff;
    color: #333;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
    margin: 20px;
}

.banner-container {
    margin-bottom: 20px;
    background-color: #0052ff;
    padding: 10px;
    border-radius: 8px;
}

.banner-img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #0052ff;
    font-weight: 700;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

a {
    color: #0052ff;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.1);
}

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

#status {
    margin-top: 20px;
    font-size: 14px;
    color: red;
}

footer {
    margin-top: 30px;
    font-size: 14px;
    color: #555;
}

.footer-link {
    color: #555;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-logo {
    width: 30px; /* 75% of the original 30px */
    height: auto;
    vertical-align: middle;
    margin-left: 10px;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.1);
}
