
/* styles.css - Styles gÃ©nÃ©raux pour tout le site */

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(254, 250, 245);
    color: #333;
}

.section {
    background-color: #fff;
    max-width: 700px;
    box-sizing: border-box;
    margin: 25px auto;
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px solid #d3d3d3;
}

/* Nouvelle section avec le logo et la vidéo */
.header-section {
    max-width: 600px;
    margin: 25px auto;
    text-align: center;
}

.header-section img {
    max-width: 180px;
    margin-bottom: 20px;
}

.header-section video {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d3d3d3;
}

.section video {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d3d3d3;
}

/* Style des champs */
.input-group {
    display: flex;
    justify-content: space-between;
}

.input-group input {
    width: 48% !important;
}

input[type=text], input[type=email] {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

/* Bouton */
#startButton {
    background-color: #50ddc4;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 50px;
    width: 100%;
}

#startButton:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#startButton:hover {
    background-color: #1fd9b8;
}

#status {
    color: red;
    margin-top: 15px;
    font-weight: bold;
}
.checkbox-container {
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
}

.checkbox-container input {
    margin-right: 8px;
}

a {
    color: #1fd9b8;
}

.section h2 {
    font-size: 26px;
    text-align: center;
}

.section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #1fd9b8;
}

.step h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #333;
}

.step p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    font-size: 14px;
    align-items: center;
    color: #555;
}

li strong {
    color: #1fd9b8;
    margin-right: 5px;
}

li::before {
    content: "•";
    color: #1fd9b8;
    font-size: 20px;
    margin-right: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: #333;
    font-size: 2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #1fd9b8; /* Couleur de survol pour matcher ton design */
}
