@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


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

html {
    font-size: 62.5%; 
    scroll-behavior: smooth;
    block-size: border-box;
}

body {
    font-family: "Open Sans", serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #62666B;
    background-color: #ffffff;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100svh;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, ol, ul, figure, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Styles de l'en-tête */
.header-container {
    height: 5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    background-color: #ffffff;
    align-items: center;
    box-shadow: 0 0.2rem 0.6rem #0000001f, inset 0 -0.1rem #dadce0;
}

.logo-wrapper {
    width: 3rem;
    height: 3rem;
    margin-left: 2rem;
}

.logo-wrapper img {
    width: 100%;
}

.header-title {
    font-size: 2.3rem;
    margin-left: 0.5rem;
    color: #62666B;
    font-weight: 400;
}

.main-navigation {
    position: absolute;
    right: 0;
}

.navigation-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation-item {
    width: 20rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    color: inherit;
}

.navigation-item:hover {
    color: #dd5347;
}

.account-creation-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20rem;
    height: 5rem;
    background-color: #dd5347ff;
    color: #ffffff;
    font-size: 1.6rem;
}

.account-creation-button:hover {
    color: #ffffff;
}


/* Styles spécifiques pour la page d'accueil (index.html) */
.home-section {
  position: relative;
  height: 100vh;
  background-image: url("./image/Acceuil.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.home-text {
  position: absolute;
  top: 17%;
  left: 8%;
  font-size: 4rem;
  font-weight: 300;
  color: #ffffff;
}

.cta-button {
  position: absolute;
  top: 46%;
  left: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 5rem;
  background-color: #dd5347ff;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  text-transform: uppercase;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Styles du contenu principal */
.main-content {
    margin-top: 5rem;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.form-section {
    padding-top: 6rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.form-title {
    font-size: 2.3rem;
    font-weight: 300;
    text-align: center;
}

.form-description {
    width: 35rem;
    font-size: inherit;
    text-align: center;
}

.account-form {
    width: 80rem;
    margin-bottom: 2rem;
    
}

.form-fieldset {
    border-radius: 0.5rem;
    padding: 2rem;
    border: 0.1rem solid #dadce0;
}

.form-legend {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.form-label {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.account-form input {
    width: 95%;
    height: 4rem;
    background-color: #F8F5F5;
    border: 0.1rem solid #d1d0d0;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    font-size: 1.4rem;
}

.submit-button {
    margin-left: 27%;
    margin-right: 27%;
    margin-top: 1rem;
    background-color: #1A73E8;
    width: 25rem;
    height: 4rem;
    color: #ffffff;
    border: none;
    border-radius: 0.2rem;
    cursor: pointer;
    font-size: 1.4rem;
}



.down-arrow-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    position: fixed;
    right: 3%;
    bottom: 5%;
    background-color: #dd5347ff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.down-arrow-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
}

.down-arrow-wrapper:hover {
    transform: scale(1.1);
}



/* Styles du pied de page */
.footer-container {
  height: 5rem;
  background-color: #fafafa;
  text-align: center;
  padding: 1rem;
  margin-top: 10rem;
}











