/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html,
body {
    height: 100%;
}

body {
    background: #121212;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 40px 10px;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

/* Formulaire */
.contact-container {
    flex: 1;
    background: #1e1e2f;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
    text-align: center;
    margin: auto;
}

.contact-container h1 {
    color: #00ffc3;
    margin-bottom: 20px;
}

.success {
    color: #0f0;
    margin-bottom: 12px;
}

.form-input,
.form-textarea {
    background: #2a2a3b;
    color: #eee;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 12px;
    margin: 8px 0;
    font-size: 1em;
    width: 100%;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.disclaimer {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 1em;
    margin: 1em 0;
    border-radius: 8px;
    font-size: 0.95em;
    line-height: 1.5em;
    text-align: left;
}

.checkbox-wrapper {
    display: flex;
    justify-content: center;
    margin: 1em 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95em;
    color: #eee;
    cursor: pointer;
    max-width: 90%;
    text-align: left;
}

.form-checkbox {
    transform: scale(1.2);
    accent-color: #00ffc3;
    cursor: pointer;
}

.form-button {
    background: #00ffc3;
    color: #121212;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.3s;
}

.form-button:hover {
    background: #00cfa1;
}

.back-link {
    display: block;
    margin-top: 20px;
    color: #00ffc3;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Footer propre */
.site-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.85em;
    color: #aaa;
    margin-top: auto;
}

.site-footer hr {
    border: none;
    border-top: 1px solid #444;
    margin-bottom: 10px;
}

.site-footer a {
    color: #00ffc3;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}