.page {
    display: flex;
    align-items: start;
    justify-content: center;
    min-height: 85%;
    padding: 5% 3% 0 3%;
    position: relative;
}

footer {
    min-height: 15% !important;
}

.navbar {
    display: none !important;
}

header {
    min-height: 10%;
    display: flex;
    align-items: end;
    justify-content: end;
    padding: 0 3%;
}

header img {
    width: 200px;
}

.form-container form {
    width: 100%;
}

.form-outline {
    margin: 2% auto;
}

.logo img {
    width: 75%;
}

.btn-login {
    background-color: var(--secondary);
    width: 100%;
    color: #fff;
    text-align: center;
    border-radius: 0;
    font-weight: bold;
    text-transform: capitalize !important;
    font-size: 14px;
    box-shadow: none !important;
    transition: all .2s ease-in-out;
}

.btn-login:hover {
    color: #fff;
    transform: scale(1.05);
}

.form-label {
    font-size: 14px;
    color: #000 !important;
}

.form-check-label {
    font-size: 14px;
}

.txt-register, .txt-pass {
    color: #000;
    font-size: 12px;
}

.txt-register a, .txt-pass a {
    color: #000;
}

.text-container {
    padding: 0 0 0 10%;
}

.login-column {
    position: sticky;
    top: 36vh;
    transform: translateY(-50%);
    z-index: 100;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.text-container section {
    margin-bottom: 3%;
}

.text-container p, .text-container ul, .text-container li {
    text-align: justify;
    margin-bottom: 0;
}

.text-container h3 {
    font-size: 22px;
}

.text-container h5 {
    font-size: 18px;
}

.text-container h3 {
    margin-bottom: 2%;
}

.text-container h5 {
    margin-bottom: 1%;
}

.text-container .green-container {
    background-color: var(--secondary);
    padding: 2%;
}

.text-container ol, .text-container ul {
    list-style: none;
    padding-left: 0;
}

.text-container ol li, .text-container ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.text-container ol li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.text-container .hospital {
    font-style: italic;
    font-size: 13px;
}

.text-container ul li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.text-container .disclaimer {
    font-style: italic;
    font-size: 13px;
}

hr {
    height: 2px !important;
    color: var(--secondary);
    opacity: 1 !important;
    margin-bottom: 3%;
}

@media (max-width: 1400px) {
    .logo img {
        width: 65%;
    }

    .text-container p, .text-container li {
        font-size: 14px;
    }

    .text-container h3 {
        font-size: 22px;
    }

    .text-container h5 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    header img {
        width: 160px;
    }

    .login-column {
        position: static;
        transform: none;
        top: auto;
        width: 60%;
        margin: 5% auto;
    }

    .login-container {
        width: 100%;
        margin: 5% auto;
    }

    .text-container {
        padding: 0;
    }

    .form-check-label {
        font-size: 14px;
    }

    .txt-pass, .txt-register {
        font-size: 12px;
    }

    .text-container section {
        margin-bottom: 5%;
    }

    hr {
        margin-bottom: 4%;
    }
}

@media (max-width: 576px) {
    header img {
        width: 140px;
    }

    .form-check-label {
        font-size: 12px;
    }

    .txt-pass, .txt-register {
        font-size: 11px;
    }

    .login-column {
        width: 100%;
        margin: 7% auto;
        padding: 2% 4%;
    }

    .logo img {
        width: 60%;
    }

    .text-container section {
        margin-bottom: 6%;
    }

    hr {
        margin-bottom: 5%;
    }
}

@media (max-height: 600px) {
    .form-container {
        margin: 8% auto;
    }

    .form-check-label {
        font-size: 12px;
    }
}