@import url("../app/site-variables.css");
/*€──────────────────────────────────────────────────────────────────────────────────────────────*/
/*€--- Fichier S100-contact.css ===> STYLE appliqué sur fichier V100-contact.php ( Dossier VIEW )*/
/*€──────────────────────────────────────────────────────────────────────────────────────────────*/


/*:___ DEBUT - 01 ______________________________________________________________________________:*/

/*?--- CONTAINER FORMULAIRE */
main {
    display: flex;
    justify-content: center;
    gap: 0px;
    align-items: center;
    width: 100%;
    background-color: #f5f5f5;
}

#iContainerCommentaire {
    width: 50%;
    box-sizing: border-box;
    padding-left: 250px;
}

#iContainerFormulaire {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-sizing: border-box;
    margin: auto;
    padding: 60px 0;
}

#iContainerFormulaire form p {
    font-size: 14px;
    color: var(--clr_31);
}

.cInputContent {
    position: relative;
    margin-bottom: 20px;
}

.cInputContent label {
    position: absolute;
    top: 50%;
    left: 20px;
    letter-spacing: 1px;
    transform: translateY(-50%);
    color: #02b3f8;
    cursor: text;
    transition: 0.5s;
}

.cInputContent label.active {
    top: -4px;
    left: 24px;
    padding: 0 5px;
    font-size: 13px;
    font-weight: 100;
    color: #f2b900;
    background-color: #fff;
    transition: 0.5s;
}

.cInputContent .cInput {
    width: 360px;
    padding: 8px 20px;
    font-size: 16px;
    letter-spacing: 1px;
    outline: none;
    color: #02b3f8;
    border: 1px solid #f2b900;
    border-radius: 16px;
    background: none;
    box-sizing: border-box;
}

.cInputContent textarea {
    resize : both;
    min-width : 360px;
    max-width : 360px;
    min-height : 60px;
    max-height : 160px;
}









ol li {
    margin-left: 30px;
    margin-bottom: 14px;
    list-style: decimal;
}

.cMsgConfirmation {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 22px;
    margin-bottom: 26px;
}

.cMsgErrors {
    position: absolute;
    top: 0;
    color: red;
    font-weight: bold;
}

.cMsgSuccess {
    position: absolute;
    top: 0;
    color: green;
    font-weight: bold;
}







.cBoxBtnEnvoyer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 26px;
}

.cBoxBtnEnvoyer button {
    position: relative;
    display: block;
    width: 140px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.05px;
    text-align: center;
    text-decoration: none;
    color: var(--clr_10);
    background-color: var(--clr_20);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all .35s;
}

.cBoxBtnEnvoyer button span {
    position: relative;
    z-index: 100;
}

.cBoxBtnEnvoyer button::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    background-color: var(--clr_10);
    border-radius: 50px;
    transition: all .35s;
}

.cBoxBtnEnvoyer button:hover {
    color: var(--clr_20);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.3);
    transition: all .35s;
}

.cBoxBtnEnvoyer button:hover:after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}