/* --- CORTINA DE SECURITATE --- */
#security-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e8e6e1; /* Aceeași culoare cu fundalul site-ului */
    z-index: 9999; /* Peste orice altceva */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* --- CUTIA DE LOGIN --- */
.login-card {
    background: #fdfbf7;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    width: 90%;
    max-width: 350px;
    border: 1px solid #dcdcdc;
    font-family: 'Cormorant Garamond', serif;
}

.login-card h2 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 1.8rem;
}

.login-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- INPUT & BUTON --- */
.login-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.2rem;
    text-align: center;
    font-family: sans-serif; /* Ca să se vadă punctele la parolă */
    outline: none;
    transition: border 0.3s;
}

.login-input:focus {
    border-color: #333;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    transition: background 0.3s;
}

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

/* --- MESAJE DE EROARE --- */
.error-msg {
    color: #d93025;
    font-size: 0.9rem;
    margin-top: 10px;
    display: none; /* Ascuns implicit */
}
