/* FICHIER DE STYLE POUR LA PAGE DE LOGIN UNIQUEMENT */

html {
    height: 100%;
    margin: 0;
    font-family: Verdana, Tahoma, Helvetica, sans-serif;
}

body {
    background: url("/images/IOT_background.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    font-size: 14px;
}

h1 {
    color: white;
    font-weight: normal;
    font-size: 48px;
    position: relative;
    top: 10%;
}

form {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
    align-items: center;
}

input {
    width: 280px;
    height: 44px;
}

input[type="text"], input[type="password"] { 
    outline: none;
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: auto;
}

a{
    color: #494A4A;
    text-decoration: none;
    background: transparent;
}

a:hover {
    color: #494A4A;
    background: transparent;
}

.container {
    height: 100%;
    width: 100%;
    text-align: center;
}

.bold_text {
    font-weight: bold;
}

.form_container {
    width: 500px;
    height: 340px;
    background-color: rgba(238, 239, 239, 0.88);
    margin: 20% auto 0;
    padding-bottom: 40px;
}

.space_login {
    height: 50px;
}

.login_button {
    background-color: #494a4a;
    color: white;
    text-shadow: none;
    border: none;
    background-image: linear-gradient(to bottom, #494A4A, #494A4A);
    height: 35px;
    font-weight: bold;
    padding: 6px 16px;
}

.input-login {
    display: inline-table;
    vertical-align: middle;
}

.icon_login {
    background-color: #494A4A;
    height: 30px;
    border: none;
}

.input-group-text {
    background-color: #494A4A;
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-login span {
    width: auto;
}

#copyright {
    color: white;
}