/* public/css/style.css */

/* Dunkles, elegantes Design passend zur Kundengalerie */
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background: #111; 
    color: #fff; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    margin: 0; 
}

.login-box { 
    background: #222; 
    padding: 2.5rem; 
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    width: 100%; 
    max-width: 400px; 
    text-align: center; 
    box-sizing: border-box;
}

h1 { 
    margin-top: 0; 
    font-size: 1.8rem; 
    margin-bottom: 10px; 
    font-weight: 400;
}

p { 
    color: #aaa; 
    margin-bottom: 25px; 
    font-size: 0.95rem; 
    line-height: 1.5;
}

input[type="text"] { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 15px; 
    border: 1px solid #444; 
    background: #111; 
    color: #fff; 
    border-radius: 4px; 
    box-sizing: border-box; 
    font-size: 1rem; 
    text-align: center; 
    transition: border-color 0.3s;
}

input[type="text"]:focus { 
    outline: none; 
    border-color: #e74c3c; /* Roter Akzent passend zum Favoriten-Herz */
}

button { 
    width: 100%; 
    padding: 12px; 
    background: #e74c3c; 
    color: white; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 1rem; 
    transition: background 0.2s; 
}

button:hover { 
    background: #c0392b; 
}

/* Der Admin-Link: Dezent, aber gut erreichbar */
.admin-link {
    display: block;
    margin-top: 20px;
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.admin-link:hover { 
    color: #fff; 
}