
section {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100%; 
    background-image: url('../../img/musculation.webp'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

.hidden {
    display: none;
}

.visible {
    display: inline;
}


.login-container {
    background-color: white;
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    padding: 20px; 
    width: 300px; 
    margin-bottom: 150px;
}

.login-form h2 {
    text-align: center; 
    color: #333; 
    margin-bottom: 20px; 
}

label {
    display: block; 
    margin-bottom: 5px; 
    color: #333; 
}

input,
button {
    width: 100%; 
    padding: 10px; 
    margin-bottom: 15px; 
    border: 1px solid #ccc; 
    font-size: 16px; 
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #333; 
    outline: none; 
}

div.subscribe {
    margin:10px; 
    text-align:center
}

span.strength {
    font-size: 12px;
}

span.strength-explain {
    font-size: 13px;
}

button {
    background-color: #555; 
    color: white; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 16px; 
    transition: background-color 0.3s; 
}

button:hover {
    background-color: green; 
}


/* Notification */
div.added {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-bottom: 20px;

}

div.modified {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
    padding: 10px;
    margin-bottom: 20px;

}

div.deleted {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 20px;

}

div.error {
    background-color: #fff3cd; 
    color: #856404; 
    border: 1px solid #ffeeba;
    padding: 10px;
    margin-bottom: 20px;

}

/* Responsive */
@media (max-width: 768px) {
    
    .login-container {
    border: 0px solid #333; 
    width: 80%;
    }
}

