@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 du contenu principal */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    padding-top: 5rem;
}

/* Styles du formulaire */
.form-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
    position: relative;
    width: 60rem;
}

.form-title {
    text-align: left;
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 2rem;
}

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

.form-legend {
    font-size: 1.8rem;
    color: #555;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 0.1rem solid #ccc;
    border-radius: 0.4rem;
    box-sizing: border-box;
    font-size: 1.6rem;
}

.submit-button {
 
    background-color: #1a73e8;
    color: #fff;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    font-size: 1.6rem;
}

/* Styles des boutons */
.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.8rem;
    cursor: pointer;
}

.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);
}