/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: url('images/risk3.webp') no-repeat center center fixed; /* Lien vers l'image de fond */
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #ffffff;
}

.container {
    background-color: rgba(0, 0, 0, 0.75); /* Couleur semi-transparente */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    text-align: left;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: #333;
    color: #fff;
}

button {
    padding: 10px;
    background-color: #3498db; /* Bleu vif */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #ffffff;
    font-weight: bold;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9; /* Bleu foncé */
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ffffff;
}
