/* AvdAccessGateway Error Page Styles */

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.error-container {
    max-width: 600px;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.error-container h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.5rem;
    color: #2b3e2b;
    margin-bottom: 1.5rem;
}

.error-container .message {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #605e5c;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-container p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #605e5c;
    margin-bottom: 1rem;
}

.request-id {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: #8a8886;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e1e1e1;
}

.error-icon {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

/* Additional navbar styling to ensure proper display */
.nav-not-logged {
    background-color: #2b3e2b !important;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    height: 60px;
    line-height: 60px;
}
