/* STYLE ADMIN */

/* Police plus moderne */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1C2B5E;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Conteneur principal */
.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 380px;
    text-align: center;
}

/* Message de bienvenue */
.welcome-message {
    font-size: 1.1rem;
    color: #1C2B5E;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Titre */
h1 {
    color: #1C2B5E;
    margin-bottom: 20px;
}

/* Groupe de formulaire */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    transition: border 0.3s ease;
}

input:focus {
    border-color: #1C2B5E;
    outline: none;
}

/* Bouton de connexion */
.submit-btn {
    width: 100%;
    background-color: #1C2B5E;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #152045;
}
