:root {
    --neon-blue: #00d9ff;
    --neon-pink: #ff00ff;
    --neon-purple: #8a2be2;
    --dark-bg: #0d0d0d;
    --light-text: #ffffff;
    --glow-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--glow-shadow);
    width: 400px;
    margin-top: 20px;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.checkbox-group, .form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="checkbox"] {
    margin-right: 10px;
}

button {
    background-color: #0099cc;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background-color: #0099cc;
}

a {
    color: #0099cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


#cgv-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
}

#close-cgv {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

#close-cgv:hover,
#close-cgv:focus {
    color: black;
    text-decoration: none;
}
body{
    background-image: url("img/fond_devis.webp");
    height: 100vh;
    background-position: center;
    background-size: cover;
}