/* ===========================
   FORMULAIRE MAIN COURANTE
=========================== */

.tefs-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #1f1f1f;
    padding: 30px;
    border-radius: 12px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(255,255,255,0.02);
}

/* Champs */
.tefs-form input,
.tefs-form select,
.tefs-form textarea {
    background: #2a2a2a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s ease;
}

.tefs-form textarea {
    min-height: 90px;
    resize: vertical;
}

/* Focus */
.tefs-form input:focus,
.tefs-form select:focus,
.tefs-form textarea:focus {
    outline: none;
    border-color: #33c3d9;
    box-shadow: 0 0 8px rgba(51,195,217,0.4);
}

/* Bouton */
.tefs-form button {
    background: #33c3d9;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.tefs-form button:hover {
    background: #2aa5b8;
}

/* ===========================
   ENTRÉES LISTE
=========================== */

.tefs-entry {
    background: #252525;
    border: 1px solid #333;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 10px;
    color: #eaeaea;
    transition: 0.2s ease;
}

.tefs-entry:hover {
    border-color: #33c3d9;
    box-shadow: 0 0 12px rgba(51,195,217,0.2);
}

/* ===========================
   FOND IMAGE
=========================== */

.mc-access-wrapper {
    position: fixed;
    inset: 0;
    background: url('https://aurel-tech.fr/wp-content/uploads/2025/09/ChatGPT-Image-11-sept.-2025-12_05_07.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* ===========================
   CARTE NOIRE
=========================== */

.mc-access-form {
    position: relative;
    background: #1b1b1b;
    padding: 45px 40px;
    border-radius: 16px;
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.6),
        inset 0 0 20px rgba(255,255,255,0.02);
}

/* Champs */
.mc-access-form select,
.mc-access-form input {
    background: #2a2a2a;
    border: 1px solid #333;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.25s ease;
    width: 100%;
}

.mc-access-form select:focus,
.mc-access-form input:focus {
    outline: none;
    border-color: #33c3d9;
    box-shadow: 0 0 12px rgba(51,195,217,0.4);
}

/* Bouton */
.mc-access-form button {
    background: #33c3d9;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
    width: 100%;
}

.mc-access-form button:hover {
    background: #2aa5b8;
}

