body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}

.container {
    position: relative;
    width: 350px; /* Ajustez selon la taille du formulaire */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('/gestion_cs_semur/Image/LOGO_SEMUR.jpg');
    background-size: contain; /* L'image s'adapte bien sans être coupée */
    background-position: center;
    background-repeat: no-repeat;
}

header {
    text-align: center;
    font-size: 24px;
    /*margin-bottom: 20px;*/
    margin:0;
    width: 300px;
    height: 50px;
    
}
h1{
    background-color: rgb(157, 164, 164);
    margin:0;
    
}
form {
    background-color: rgba(242, 242, 242, 0.7); /* Légère transparence pour voir l'image en fond */
    border: 1px solid #ccc;
    width: 100%;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-weight: bold;
}

input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
