/* --------------------------------------------------------------

   form.css
   Base pour formulaires
   Cf.: https://contrib.spip.net/3820

-------------------------------------------------------------- */

input,textarea,button { font-family: inherit; font-size: 100%; font-weight: inherit;-webkit-appearance: none;
   -moz-appearance: none;
        appearance: none; margin:0; }

legend { font-weight: 400; }

#formulaire_menu_lang label {display: none;}

/* Curseur main sur les elements input cliquables */
input[type="submit"],input.btn,input.submit,
input[type="button"],input.button,
input[type="image"],input.image,
button { cursor: pointer;  border:0; padding:10px 20px; color:#FFF; background-color:#c03839;-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;}
button:hover{ color:#FFF; background-color:#3c3d3e}

/* Aspect boutons */
input[type="submit"]{ border:0; padding:10px 20px; color:#000; background-color:#CCC; -moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;}
input[type="submit"]:hover{ color:#FFF; background-color:#3c3d3e}


textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie fieldset { padding-top: 0; }
.ie6 legend,
.ie7 legend { margin-left: -7px; } /* Preciser la couleur des legend et du fond pour IE/Win */
.ie button,
.ie input.btn,
.ie input.submit,
.ie input.button { position: relative; }

button { width: auto; overflow: visible; } /* joli rendu sous IE: www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */

/* Elements de notifications des boites succes, info, notice, alerte */
.reponse,
.error,
.alert, 
.notice,
.success, 
.info     { padding: .8em; margin-bottom: 1.5em; border: 2px solid #ddd; }

.error,
.alert      { background: #fbe3e4; color: #8a1f11; border-color: #fbc2c4; }
.notice     { background: #fff6bf; color: #514721; border-color: #ffd324; }
.success    { background: #e6efc2; color: #264409; border-color: #c6d880; }
.info     { background: #d5edf8; color: #205791; border-color: #92cae4; }

.error a,
.alert a      { color: #8a1f11; }
.notice a   { color: #514721; }
.success a    { color: #264409; }
.info a     { color: #205791; }

/* Formidable */

.editer-groupe {
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #F0F0F0;
  margin-bottom: 15px;
}
.cibloc .formulaire_spip {
  margin-top : .5em
}



/* fin */