/* Assurez-vous que le HTML et le body couvrent toute la page */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.background-cont {
    background-image: url('../img/images_a_depose.jpg'); /* Remplacez par le chemin de votre image de fond */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh; /* Assurez-vous que la hauteur couvre toute la vue */
}

/* Style pour le container de connexion */
.login-box {
    background-color: rgba(255, 255, 255, 0.8); /* Fond blanc avec transparence */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.account-wall {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.6); /* Fond blanc avec transparence */
    border-radius: 10px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.form-signin .btn {
    margin-bottom: 10px;
}

body {
    font-family: Arial, sans-serif;
}
