@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #9d7153 0%, #DEB887 100%);
    min-height: 100vh;
}

/* Centrage uniquement pour la page de connexion */
body.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    padding: 50px;
}

.logo-section { text-align: center; margin-bottom: 30px; }
.logo { max-width: 180px; height: auto; }

h1 { color: #9d7153; font-size: 24px; margin-bottom: 25px; text-align: center; }

.form-group { margin-bottom: 20px; }
label { display: block; color: #9d7153; font-weight: 500; margin-bottom: 5px; font-size: 14px; }

input[type="text"], input[type="password"], input[type="email"], textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #DEB887;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login { background: #fdcd00; color: #9d7153; }
.btn-secondary { background: #9d7153; color: white; margin-top: 10px; }

.avatar-display {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #DEB887;
}

/* Modal */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100; }
.modal-content { background: white; margin: 10% auto; padding: 30px; max-width: 400px; border-radius: 10px; }