/* Réinitialisation des styles de base */
body, form, label, input, select, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Styles du corps de la page */
body {
    background-color: #c2e0ed;
    display: flex;
    flex-direction: column; /* Permet d'organiser les éléments verticalement */
    align-items: center;
    height: 100vh;
}

/* Styles de l'en-tête */
header {
    background-color: #1d04fe; /* Couleur de fond de l'en-tête */
    color: white;
    padding: 10px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    margin-left: 20px;
}

header .logo img {
    height: 50px; /* Ajustement de la taille du logo */
    width: auto; /* Conserve le ratio d'aspect */
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin: 0 20px; /* Espace entre les éléments du menu */
}

header nav ul li a {
    color: white; 
    font-weight: bold; 
    text-decoration: none;
    font-size: 1.1em; /* Taille de police ajustée */
    transition: color 0.3s ease;
    padding: 10px; /* Ajout de padding pour agrandir le lien */
}

header nav ul li a:hover {
    color: #c3c308; /* Couleur au survol */
}

/* Section d'inscription */
.register-section {
    background: radial-gradient(#72c6ea, #029dd5, rgb(121, 204, 239)) no-repeat fixed;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin-top: 80px; /* Espace pour éviter que la section ne soit cachée par l'en-tête */
}

.register-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

/* Styles des groupes de formulaire */
.form-group {
    margin-bottom: 12px;
    font-weight: bold;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #000000;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Styles pour la sélection de rôle */
.role-selection {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.role-selection label {
    display: flex;
    align-items: center;
    color: #000000;
}

.role-selection input {
    margin-right: 5px;
}

/* Styles pour le champ de description */
#descriptionField textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    resize: vertical;
}

/* Styles du bouton d'inscription */
.register-btn {
    width: 100%;
    padding: 10px;
    background-color: #1d04fe;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register-btn:hover {
    background-color: #05990c; /* Couleur au survol */
}

/* Styles pour le texte de bas de page */
p {
    text-align: center;
    margin-top: 15px;
    color: #000000;
    font-weight: bold;
}

p a {
    color: #ff0000;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}