body {
    margin: 0;
    font-family: 'Lexend', 'Arial', sans-serif;
    background: url('../assets/cadreur.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.8); /* Fond blanc transparent */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

form h2 {
    color: #1C0E38;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

form label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
    font-weight: bold;
}

form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 1rem;
}

form button {
    width: 100%;
    padding: 10px 20px;
    background-color: #2E185A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s;
}

form button:hover {
    background-color: #1C0E38;
    color: #ffffff;
    transform: scale(1.05);
}
.no-account {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
}

.no-account a {
    color: #2E185A;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.no-account a:hover {
    color: #1C0E38; /* Change en jaune au survol */
}
