/* Stili per le pagine di login e errore a tema Blades in the Dark */

body.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/background.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) blur(3px);
    z-index: -1;
}

.login-container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    text-align: center;
}

.login-box {
    background-color: rgba(26, 26, 26, 0.85);
    border: 1px solid #444;
    border-radius: 5px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.login-header {
    margin-bottom: 30px;
}

.login-icon {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.login-header h1 {
    font-family: var(--font-headings);
    font-size: 3em;
    margin: 0;
    color: var(--text-color);
}

.login-header h2 {
    font-family: var(--font-main);
    font-weight: 300;
    font-style: italic;
    font-size: 1.1em;
    color: #a0a0a0;
    margin-top: 5px;
}

.login-main p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #b0b0b0;
}

/* Rende il bottone di login coerente con le classi .btn globali */
.login-button {
    font-size: 1.2em !important;
    padding: 12px 25px !important;
}

.login-button i {
    font-size: 1.1em;
}

.login-footer {
    margin-top: 30px;
    font-size: 0.8em;
    font-style: italic;
    color: #666;
}

/* Stili specifici per 403.html */
.action-buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}