/*
    RESET
*/
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: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
 * INDEX
 */
body {
    display : flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e9e9e9;
}
#logo-techniproj {
    position: fixed;
    top: 7px;
    left: 7px;
    background-image: url("../img/cropped-Techniproj_Logo-1.png");
    background-size: cover;
    width: 92px;
    height: 50px;
}
#login-container {
    width: 350px;
    height: 420px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    border-radius: 5px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#logo-capi{
    background-image: url("../img/logo_capi.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 230px;
    height: 160px;
    background-position: center;
}
#connexion {
    display: flex;
    flex-direction: column;
    width: 240px;
}
#log-pass{
    border: 1px solid lightgrey;
    border-radius: 1px;
    box-sizing: border-box;
}
.input-login {
    border: none;
    padding: 7px;
    width: 100%;
    box-sizing: border-box;
    height: 35px;
}
.input-login:first-of-type {
    border-bottom: 1px solid lightgrey; 
}
#input-connect {
    margin-top: 15px;
    min-height: 35px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: rgb(225,0,109);
    cursor: pointer;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(166,166,166);
    opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgb(166,166,166);
}
::-ms-input-placeholder { /* Microsoft Edge */
    color: rgb(166,166,166);
}
#connectfailed{
    color: red;
    margin-top: 15px;
    text-align: center;
    width: 240px;
    font: bold 15px Arial;
}