/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Page */


html {
    background: var(--secondary-base);
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 62.5%;
    /*color:var(--primary-base);*/
    color: #8e9292;
    background: #fdfffe url(../images/banner-default.jpg) no-repeat 100% 0/100% auto fixed;
}

body.home {
    background-image: url(../images/banner2.jpg);
}

.container {
    width: 100%;
    font-size: .9rem;
    line-height: 1.2rem;
    background: url(../images/footer.png) no-repeat 50% 100%/100% auto fixed;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.standard-width {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}


/* Buttons */
.btn {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    padding: .4rem;
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--secondary-light);
    transition: all .2s;
    background-color: var(--primary-dark);
    background-image: var(--gradient-01);

}

.btn:hover {
    background-color: var(--tertiary-light-2);
    color: var(--secondary-light);
}

/* Validation formulaire */
.error input[type="text"], .error input[type="password"], .error input[type="submit"], .error textarea {
    border-color: var(--color-error);
}

.error span.error {
    color: var(--color-error);
}

.success label:before {
    content: '';
    position: absolute;
    bottom: 3px;
    right: 0;
    height: 15px;
    width: 5px;
    transform: rotate(45deg);
    border: solid #02c106;
    border-width: 0 2px 2px 0;
}

/* separateur */
hr.separator {
    height: 1px;
    border: none;
    background: #E7EBFA;
    margin: 2rem 0;
}
