@import "/doc/prototype/var.css";

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background);
    color: var(--police_color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.container {
    background: var(--card);
    border: 1px solid var(--line);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 450px;
}

h1 {
    color: var(--police_color);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: var(--police_color);
    font-weight: 500;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--line);
    background: var(--background);
    color: var(--police_color);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
}

button {
    width: 100%;
    padding: 14px;
    background: rgba(70, 70, 70, 0.5);
    color: var(--police_color);
    border: 1px solid var(--line);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background: rgba(70, 70, 70, 0.7);
    transform: translateY(-2px);
}

.erreur {
    background: #fee;
    border-left: 4px solid #f44;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    color: #c33;
}

.liens {
    text-align: center;
    margin-top: 20px;
    color: var(--police_color);
}

.liens a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.liens a:hover {
    text-decoration: underline;
}