/* Full-screen gradient background */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Background gradient */
body {
    background: linear-gradient(to bottom left, rgb(229, 205, 133), rgb(245, 199, 62));
    min-height: 100vh;
}

/* Ensure full-width centering container */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Logo is centered and scales properly */
.logo {
    max-width: 90%;
    height: auto;
    display: block;
    margin: auto;
}

@media (min-width: 576px) { .logo { max-width: 70%; } }
@media (min-width: 768px) { .logo { max-width: 50%; } }
@media (min-width: 992px) { .logo { max-width: 40%; } }
@media (min-width: 1200px) { .logo { max-width: 30%; } }

/* Ensure footer remains at the bottom */
.footer {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: rgba(44, 80, 98, 0.7);
    font-family: Arial, sans-serif;
    padding: 5px 0;
}
