/* General */

html {
    background: url("../images/bg-dekra.jpeg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    margin: 0;
}

body {
    font-family: "Montserrat";
    text-align: center;
    background-color: transparent;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    height: 100%;
    margin: 0;
}

p {
    color: #a5a1a1;
}

.container-fluid {
    padding: 1% 1%;
}

/* Header */

#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    text-align: right;
}

.img-logo {
    height: 80px;
    width: 80px;
    padding-top: 10px;
    padding-right: 10px;
}

/* Login */

#login {
    text-align: center;
    color: #fff;
}

.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 15px;
}

.form-signin .form-control {
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
    position: relative;
}

.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.login-text {
    color: #fff;
}

/* Footer */

#footer {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 12px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.footer-title {
    margin-top: 16px;
}