/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 6 août 2020, 18:17:58
    Author     : solutionsklay
*/

form.cpn h4 {
    margin-top:20px;
    margin-bottom:5px;
}

form.cpn h6 {
    font-weight:bold;
}

form.cpn label {
    width: 95px;
    display: inline-block;
}

form.cpn fieldset {
    border: 0px none;
    padding-top:5px;
    padding-bottom:5px;
}

form.cpn fieldset.legal {
    background-color: lavender;
}

form.cpn fieldset.emergency {
    background-color: peachpuff;
}

form.cpn fieldset.child-odd {
    background-color: lemonchiffon;
}

form.cpn fieldset.child-even {
    background-color: beige;
}

input::placeholder {
  color:#bbb;
}

input[pattern]:invalid {
  color:red;
}

input[pattern]:valid {
  color: darkgreen;
  background-color: #eeffee;
}

span.notice {
    display:block;
    border:1px solid greenyellow;
    background-color: lightgreen;
    text-align:center;
    line-height:1.5em;
    width:100%;
    padding:10px;
    margin:10px;
}

span.warning {
    display:block;
    border:1px solid lightcoral;
    background-color: coral;
    text-align:center;
    line-height:1.5em;
    width:100%;
    padding:10px;
    margin:10px;
}

input.submit_button:disabled {
    background-color:#dddddd;
    color:#aaaaaa;
}