﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.continue-button {
    background: linear-gradient(90deg, #2a2a72, #009ffd, #ff1e56, #ffac41);
    border: none;
    color: white;
    padding: 8px 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.continue-button:hover {
    background: linear-gradient(90deg, #ffac41, #ff1e56, #009ffd, #2a2a72);
}

.digilife-logo {
    width: 150px;
    margin-top: 1rem;
}
.p-l {
    padding-left: 1rem;
}
.lead{
    padding:.5rem;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
    margin-top: auto; /* Ensure footer sticks to the bottom */
}

@media (max-width: 768px) {
    .container, footer {
        padding: .5rem .5rem;
    }
}
