/* Style général */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    font-family: 'Rye', sans-serif;
}

/* Conteneur de login */
.login-container {
    background-image: url("skullwood600x300.jpg"); /* Image de fond boisée */
    background-size: cover;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 600px;
    height: 300px;
    position: relative;
}

/* Overlay pour ajouter opacité */
.overlay {
    border-radius: 15px;
    margin-left: 200px;
    width: 350px;
    height: 150px;
    text-align: center;
    position: relative;
    color: #ccc;
    margin-top: 15px;
}

/* Style de l'image */
.skull-image {
    width: 100px; /* Ajuster la taille de l'image */
    margin-bottom: 1rem;
}

/* Titre confidentiel */
h2 {
    font-family: 'Rye', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #6b6b6b;
}

/* Champ de saisie pour mot de passe */
.password-input {
    width: 80%;
    padding-top: 7px;
    padding-right: 7px;
    padding-left: 7px;
    padding-bottom: 7px;
    margin: 10px auto; /* Centrer le champ et espacer */
    border-radius: 20px;
    background-color: #19191b;
    border: 2px solid #353535;
    color: #ccc;
    text-align: center;
    font-size: 1rem;
    transition: none;
    font-family: 'Arial', sans-serif;
}
.password-input::placeholder {
    color: #ccc;
    opacity: 1; 
    font-family: 'Arial', sans-serif;
}

/* Effet au focus du champ de mot de passe */
.password-input:focus {
     background-color: #19191b;
     border-color: #353535; 
     outline: none; 
}

/* Bouton de connexion */
.login-button {
    padding: 13.5px 30px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -8px;
    background-color: #19191b;
    color: #747475;
    border: none;
    border-radius: 20px;
    font-size: 17px;
    cursor: pointer;
    display: block; /* Centrer le bouton */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    /* Effet au survol du bouton */
    .login-button:hover {
        background-color: #131416;
        border-color: #000;
    }

    .login-button:active {
        background-color: #131416;
        border: thin inset #000;
    }