body {
    font-family: 'Oxanium', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

h1 {
    text-align: center;
}

label {
    font-size: 1rem;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 30px;
    background-color: #333;
    color: white;
    position: relative;
    margin-top: auto;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
}

.btn-orange {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: white;
}

.btn-orange:hover {
    background-color: #ffa500;
    border-color: #ffa500;
    color: white;
}

.btn-orange:active,
.btn-orange:focus {
    background-color: #ff7700;
    border-color: #ff7700;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.5);
}

.btn-orange:disabled {
    background-color: #cc7000;
    border-color: #cc7000;
    color: white;
    opacity: 1;
    cursor: not-allowed;
}