/* login.css */

/* Style pour la carte */

.card {
    border: none;
    border-radius: 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    padding: 30px;
    background-color: #ffffff;
    width: 100%;
    max-width: 500px; 
    margin: 0 auto; 
    text-align: center; 
}

.card img {
    width: auto; 
    height: auto; 
    max-width: 100%; 
    display: block; 
    margin: 0 auto 20px; 
    object-fit: contain; 
}

/* Style pour le bouton */
.button {
    width: 100%; 
    background-color: #0038a1;
    color: white; 
    border-radius: 10px; 
    border: none;
    padding: 7px; 
    font-size: 14px;
    font-weight: 600; 
    cursor: pointer; 
    text-align: center; 
    transition: background-color 0.3s, transform 0.2s; 
}

.button:hover {
    background-color: #002c77; 
    transform: scale(1.05); 
}

.form-control {
    border-radius: 5px; 
    border: 1px solid #ced4da; 
    padding: 10px; 
    font-size: 16px;
    margin-bottom: 20px; 
    width: 100%; 
}

.alert {
    margin-bottom: 20px; 
}


label {
    display: block; 
    float: left;
    font-weight: bold; 
    margin-bottom: 5px; 
    margin-left: 0; 
}


