/* 1. Mise en page globale */
body {
    margin: 0;
    font-family: 'Inter', sans-serif; /* Définit la police d'écriture utilisée partout */
    background-color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    background: #ffffff;
}

.navbar .logo {
    margin-right: auto;
}

.navbar a {
    margin-left: 20px;
}

.logo { 
    height: 40px; 
    align-items: left;
}

.page-complete {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh; /* Toute la hauteur de l'écran */
}

/* 2. La carte principale */
.carte-connexion {
    display: flex;
    width: 900px;
    height: 500px;
    background-color: rgba(255,247,225,1); /* Beige clair */
    border-radius: 40px;      /* Bords très arrondis */
    overflow: hidden;         /* Pour que l'image suive l'arrondi */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 3. Séparation Gauche / Droite */
.cote-gauche {
    flex: 1;
	padding-top: 20px;
    padding-right: 50px;
	padding-left: 50px;
    display: flex;
    flex-direction: column;
}

.cote-droit {
    flex: 1;
    background-image: url('https://www.medecinsdumonde.org/app/uploads/2022/04/2017-MNA_ROUEN_PORTRAIT.jpg');
    background-size: cover;
    background-position: center;
}

/* 4. Champs de texte et Boutons */
label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #DDD;
    border-radius: 30px; /* Forme pilule */
    box-sizing: border-box; /* Évite que l'input dépasse */
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 15px 0;
    align-items: center;

}

/* Styles des boutons */
button {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.bouton-gris {
    background-color: #E0E0E0;
    color: #888;
}

.bouton-google {
    background-color: #C0392B; /* Rouge */
    color: white;
}

.separateur {
    text-align: center;
    margin: 20px 0;
    color: #AAA;
}