/* ------------------------------------ *
 CSS
 mardi 13 janvier 2026 23:33:50
 HAPedit 3.1.11.111
 * ------------------------------------ */

 body {
    background: linear-gradient(135deg, #1e1e2f, #2d2d44);
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.contact-container {
    background: #ffffff10;
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    width: 380px;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: fadeIn 0.8s ease;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

label {
    margin-bottom: 6px;
    font-size: 14px;
    opacity: 0.9;
}

input, textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #ffffff20;
    color: white;
    font-size: 15px;
    transition: 0.3s;
}

input:focus, textarea:focus {
    background: #ffffff35;
    outline: none;
    box-shadow: 0 0 8px #6a5acd;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #6a5acd;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #7b6df0;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


