/* ================================================================================
   LOGIN and 403 PAGE
   ================================================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #020b28 0%, #071a6e 45%, #0a2494 75%, #0d3ab8 100%);
}

.login-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.5);
    padding: 52px 52px 44px;
    text-align: center;
    width: 100%;
    max-width: 460px;
}

.login-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    margin-bottom: 36px;
}

.login-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #433d3d;
    margin-top: 30px;
    margin-bottom: 25px;
}

.okta-btn {
    display: block;
    width: 100%;
    background: #0057e7;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.18s ease;
    letter-spacing: 0.02em;
}

.okta-btn:hover {
    background: #0046c0;
    color: #fff;
    text-decoration: none;
}

.login-divider {
    margin: 28px 0 20px;
    border: none;
    border-top: 1px solid #e8e8e8;
}

.login-help {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
}

.login-help a {
    color: #0057e7;
    text-decoration: none;
}

.login-help a:hover {
    text-decoration: underline;
}

/* 403.css - Styles for the 403 Forbidden page */
.denied-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1;
}

.denied-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 10px;
}

.denied-message {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
}

.home-btn {
    display: block;
    width: 100%;
    background: transparent;
    color: #0057e7;
    padding: 14px 20px;
    border-radius: 10px;
    border: 2px solid #0057e7;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.18s ease, color 0.18s ease;
    letter-spacing: 0.02em;
}

.home-btn:hover {
    background: #0057e7;
    color: #fff;
    text-decoration: none;
}
