body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
}

.background {
    background: url('/images/piano-bg.jpg') no-repeat center center/cover;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: black;
}

/* Groupes du formulaire */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Bouton */
.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #ff9800;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.login-form button:hover {
    background-color: #e68900;
}

/* Responsive */
@media (max-width: 400px) {
    .login-form {
        width: 90%;
        padding: 30px;
    }
}

.student-title {
    background-color: #d9c9b0;
    padding: 1rem;
    text-align: center;
    border-block: 1px solid black;
}

.student-summary, .student-todo, .student-sheets {
    margin: 2rem auto;
    max-width: 800px;
    padding: 1rem;
    background-color: #ffffe0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 25px;
    border: 1px solid black;
}

a {
  color: #9370db;
}

a:hover {
  color: #add8e6;
}


/* Atelier Rockschool Page */

.student-title {
    text-align: center;
    margin: 2rem 0;
}

.student-title h1 {
    font-size: 2.5rem;
    color: #222;
    font-weight: bold;
}

.band-members {
    margin: 3rem auto;
    max-width: 900px;
    padding: 0 1rem;
}

.band-members h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #444;
    padding-bottom: 0.5rem;
}

.band-members .member {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.band-members .member:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.band-members .member h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.band-members .member p {
    font-size: 1rem;
    color: #555;
}

/* Section chansons */
.songs {
    margin: 3rem auto;
    max-width: 700px;
    padding: 0 1rem;
    text-align: center;
}

.songs h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #444;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.songs ul {
    list-style: none;
    padding: 0;
}

.songs li {
    font-size: 1.2rem;
    margin: 0.8rem 0;
    padding: 0.5rem;
    background: #f0f0f0;
    border-radius: 6px;
}
