﻿html, body {
    height: 100%;
    margin: 0;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.flex-fill {
    flex: 1;
}


.login-page-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 50px);
    background-color: #ffffff;
    flex-direction: column;
    text-align: center;
}

     .login-page-content h1 {
        font-size: 1.75rem;
        font-weight: 600;
        color: #2c2c2c;
        margin-bottom: 20px;
    }


.okta-login-btn {
    background-color: #1D6460;
    font-weight: 700 !important;
    color: #fff;
    padding: 6px 16px;
    font-size: 16px;
    font-family: 'Solve Pro Screen Variable';
    border: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    letter-spacing: 0;
}


    .okta-login-btn:hover {
        background-color: #157347;
    }

.login-holder {
    width: 60%;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
    text-align: center;
}

.main-heading {
    font-size: 32px !important;
    font-weight: 700 !important;
    font-family: 'Solve Pro Screen Variable';
    margin-bottom: 30px;
    color: #303640;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0;
}


@media screen and (max-width: 1200px) {
    .main-heading {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}


.footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}


.error-message {
    font-size: 0.95rem;
    color: #dc3545;
    margin-bottom: 10px;
    text-align: center;
}

