/* ---------- GENERAL ---------- */

html {
  position: relative;
  min-height: 100%;
  }


* {
    box-sizing: border-box;
    margin: 0px auto;
}

*::before, *::after {
    box-sizing: border-box;
}

[class*="fontawesome-"]:before {
    font-family: 'FontAwesome', sans-serif;
}


body {

    font: 87.5%/1.5em 'Open Sans', sans-serif;
    margin: 0;
    background: #0264d6; /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%, #0264d6), color-stop(100%, #1c2b5a)); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, #0264d6 1%, #1c2b5a 100%); /* IE10+ */
    background: radial-gradient(ellipse at center, #0264d6 1%, #1c2b5a 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0264d6', endColorstr='#1c2b5a', GradientType=1); /* IE6-9 fallback on horizontal gradient */

}

.container {
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* ---------- FORM ---------- */

input[type="submit"] {
    background-color: #1c2b5b;
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    background-size: 200% 100%;
}

input[type="submit"]:hover {
    background-color: #0B1A4A;
    color: #24a1d0;
}

a {
    color: #eee;
    text-decoration: none;
}

a:hover {
    color: #24a1d0;
    text-decoration: underline;
}

.btn-login {
    background-color: #1c2b5b;
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    background-size: 200% 100%;
    padding: 0.4em;
    margin: 0.4em;
    border-radius: 4px;
}

.btn-login:hover {
    background-color: #0B1A4A;
    color: #24a1d0;
}