:root {
    --noir: #000;
    --blanc: #fff;
    --magenta: #e6007e;
    --bleu: #009fe3;
}

* {
    font-family: 'Roboto', sans-serif;
    color: var(--noir);
}

body {
    margin: 50px 0;
}

.container .logo {
    display: flex;
    justify-content: center;
}

.logo {
    width: 160px;
    height: 160px;
    background-color: #d9d9d9;
    margin: 0 auto;
    border-radius: 40px;
}

.logo img {
    border-radius: 40px;
}

h1 {
    font-size: 36px;
    margin: 70px 0 50px 0;
    font-weight: bold;
}

h3 {
    font-size: 13px;
}

input {
    width: 280px;
    height: 50px;
    padding-left: 20px;
    border: 2px solid var(--magenta);
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
}

.input-small {
    width: 130px;
}

select {
    width: 280px;
    height: 50px;
    padding-left: 20px;
    border: 2px solid var(--magenta);
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
}

.container {
    text-align: center;
    width: 360px;
}

.signup-button {
    width: 280px;
    height: 50px;
    background-color: var(--magenta);
    border: none;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 22px;
    color: var(--blanc);
    font-weight: bold;
}

.signup-button:hover {
    background: var(--bleu);
    transition: 0.5s;
}

.login-text {
    font-size: 14px;
}

.login-text a {
    color: var(--magenta);
    text-decoration: none;
}

.login-text a:hover {
    color: var(--bleu);
}

/* Nouveau style pour la photo de profil */
.profile-pic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.profile-pic-container label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #d9d9d9; /* Cercle gris clair */
    cursor: pointer;
    position: relative;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.profile-pic-container label img {
    display: none; /* Masquer l'image au début */
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-pic-container label:hover {
    opacity: 0.8; /* Effet au survol */
}

#photoInput {
    display: none; /* Champ input caché */
}

.profile-pic-container span {
    position: absolute;
    z-index: 1;
    font-size: 14px;
    color: #666;
    text-align: center;
}
