/* src/components/SplashScreen.css */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e4e4e4;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    /* Add transition for smooth fade-out */
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
    /* Disable interactions */
}

.error-boundary .button-primary {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.error-boundary .button-primary:hover {
    color: #fff;
    background-color: #0056b3;
    border-color: #004085;
}

.error-boundary .button-primary:focus {
    color: #fff;
    background-color: #0056b3;
    border-color: #004085;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}



.error-boundary .login-pf-header .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 768px) {
    .login-pf-page .login-pf-page-header {
        margin-bottom: 40px;
        flex: 0 0 20em;
    }

    .logo img {
        max-width: 164px !important;
    }

    .login-pf-page .card-pf {
        padding: 20px 40px 30px 40px;
        flex: 0 0 20em;
    }

}

@media (max-width: 390px) {
    .login-pf-page {
        padding: 150px !important;
    }

    .login-pf-page .login-pf-page-header {
        margin-bottom: 40px;
        flex: 0 0 10em;
    }

    .logo img {
        max-width: 98px !important;
    }

    .login-pf-page .card-pf {
        padding: 20px 0px 30px 0px;
        flex: 0 0 10em;
    }

    .login-pf-page .login-pf-header h1 {
        font-size: 1.2rem !important;
    }
}




.logo img {
    width: 100%;
    /* Make the image take up the full width of its container */
    max-width: 256px;
    /* Set a maximum width for larger screens */
    height: auto;
    /* Maintain aspect ratio */
}

.login-pf-page {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.login-pf-page .login-pf-page-header {
    margin-bottom: 20px;
    text-align: center;
}

.login-pf-page-header {
    height: 100%;
    flex: 0 0 30em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background-color: #00adef;
}

.card-pf {
    border-top: 0;
    margin: 0;
    flex: 0 0 30em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background: #fff;
    box-shadow: 0 1px 1px rgba(3, 3, 3, .175);
}

.login-pf-page .login-pf-header h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 2rem;
    text-align: center;
    color: #00adee;
}