img {
    width: 89px;
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
}

#loginTable {
    font-size: 15pt;
    color: white;
    width: 370px;
    margin-left: calc((100% - 370px) / 2);
    border-radius: 10px;
    box-shadow: 0 3px 20px 0 rgba(0, 159, 223, 0.5);
    text-align: center;
}

input:not(:last-child) {
    color: #aaa;
}

#loginTable > form > div > input[type=submit] {
    border: none;
}

#loginTable > form > div > input {
    font-size: 15pt;
    width: 296px;
    height: 30px;
    padding: 0 30px 0 30px;
    border-radius: 20px;
    border: 1px solid #ddd;
    transition: width ease-in-out .5s;
    -moz-transition: width ease-in-out .5s;
    -webkit-transition: width ease-in-out .5s;
    -o-transition: width ease-in-out .5s;
}

#loginTable input {
    height: 25px;
}

#loginTable input:focus:not([type=submit]) {
    width: 333px;
    transition: width ease-in-out .5s;
    -moz-transition: width ease-in-out .5s;
    -webkit-transition: width ease-in-out .5s;
    -o-transition: width ease-in-out .5s;
}

#loginTable div {
    padding: 5px;
    margin: 20px 0 20px 0;
}

#textH {
    border-radius: 10px 10px 0 0;
    background-color: #009fdf;
}

#loginTable > div:first-child {
    padding-top: calc(30px - 7.5pt);
    vertical-align: middle;
    height: calc(60px - (30px - 7.5pt));
}

input[type=submit] {
    background-color: #009fdf;
    color: white;
}

input[type=submit]:hover {
    color: #aaa;
    background-color: #007dbd;
    cursor: pointer;
}

#loginTable div:last-child {
    padding-bottom: 30px;
}

#main {
    width: 50%;
    margin-left: 25%;
}

#loginTable > #link {
    padding-top: 50px;
    width: 100%;
}

#link > a {
    font-size: 13pt;
    text-decoration: none;
    color: #009fdf;
}

#infos {
    padding-top: 75px;
    text-align: center;
}