body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.body-bg-blur {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: url('../images/fond_login.jpg') center/cover no-repeat;
    filter: blur(8px);
}

.login-container {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(152, 87, 23, 0.18), 0 1.5px 8px rgba(80, 200, 120, 0.10);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s;
}

.login-container h2 {
    color: #985717;
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.2rem;
}

.login-form input {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: 1.5px solid #FFDB58;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border 0.2s;
}
.login-form input:focus {
    border: 1.5px solid #50C878;
}

.login-form button {
    background: #FFDB58;
    color: #985717;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.2rem;
    box-shadow: 0 2px 8px rgba(152, 87, 23, 0.10);
    transition: background 0.2s, transform 0.2s;
}
.login-form button:hover {
    background:  #985717;
    color: white;
    transform: scale(1.04);
}

.login-message {
    font-size: 1.1rem;
    margin: 1.2rem 0 0.5rem 0;
    color: #985717;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .login-container {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
    }
}

.login-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 2px 12px rgba(152, 87, 23, 0.10);
    background: none;
    border-radius: 0;
} 