body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    position: relative; /* <-- CRITICAL: Keeps the footer at the bottom of the viewport */
}
.img-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: -20px;
}

.img-container img {
    display: block;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.form-container {
    width: 100%;
    max-width: 350px;
    padding: 0 20px;
    box-sizing: border-box;
}

#orderForm {
    display: flex;
    flex-direction: column;
    width: 100%;
}

input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    background-color: #121212;
    border: 1px solid #363636;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}

input:focus {
    border-color: #555555;
}

button {
    width: 100%;
    padding: 14px;
    background-color: #0095f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
    box-sizing: border-box;
}

button:hover {
    background-color: #1877f2;
}

.footer-set {
    position: absolute; /* <-- Forces it out of the normal flow */
    bottom: 0;          /* <-- Sticks it to the very bottom edge */
    left: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 25px;
    box-sizing: border-box;
}

.section-divider {
    width: 100%;
    border-top: 1px solid #262626;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    color: #a8a8a8;
}

.footer-text a {
    color: #0095f6;
    text-decoration: none;
    font-weight: bold;
}