﻿/* Style pour ListeChassis */
/* © Jean-Michel Kerdal 2019 */

* {
	margin: 0px;
	padding: 0px;
	font-family: Arial, Verdana, sans-serif;
}

body {
	position: absolute;
	height: 100%;
	width: 100%;
	background-size:cover;
	background-repeat: no-repeat;	
	margin:auto;
	color: Black;
	background-color: Black;
}

.center {
	text-align: center;
}

#login {
	padding: 5px;
	width: 600px;
	height: 300px;
	margin: 0 0 0 -300px; /* Décale de la moitié de la largeur pour centrer */
	position: fixed;
	top: 15%;
	left: 50%;	
	background-color: rgba(255,255,255,0.95);
	border-radius: 4px;
	box-shadow: 0 0 5px rgba(0,0,0,0.9);
}

.login-msg {
	font-family: Georgia;
	font-size: 35px;
	color: Black;
	margin: auto;
	padding-bottom: 20px;
	padding-top: 20px;
}

.LoginZone {
	border-width: 2px;
	border-style: solid;
	border-color: LightGrey;
	border-radius: 4px;
	font-size: 20px;
	height: 40px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 8px;
	padding-right: 8px;
	width: 286px;
}

.LoginZone:focus {
	border-color: Grey;
}

/* Boutons */
.button {
	background-color: #f2f2f2;
	background-image: linear-gradient(to bottom, #f2f2f2, #f2f2f2);
	border: 1px solid #bfbfbf;
	box-shadow: inset 0 1px 0 White, inset 0 -1px 0 #d9d9d9, inset 0 0 0 1px #f2f2f2, 0 2px 4px rgba(0, 0, 0, 0.2);
	color: DimGrey;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	border-radius: 3px;
	cursor: pointer;
	display: inline-block;
	font-family: Verdana, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
	padding: 9px 16px 9px;
	margin: 16px 0 0 16px;
	transition: all 20ms ease-out;
	vertical-align: top;
}
.button:hover, .button:focus {
	background-color: #f2f2f2;
	border-color: #8c8c8c;
	box-shadow: inset 0 1px 0 White, inset 0 -1px 0 #d9d9d9, inset 0 0 0 1px #f2f2f2;
}
.button:active {
	background-color: #f2f2f2;
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}

.button-blue {
	background-color: #42b0e3;
	background-image: linear-gradient(to bottom, #42b0e3, #2ba9e3);
	border: 1px solid #107db0;
	box-shadow: inset 0 1px 0 #7cd4fc, inset 0 -1px 0 #2696c9, inset 0 0 0 1px #59b7e3, 0 2px 4px rgba(0, 0, 0, 0.2);
	color: White;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-blue:hover, .button-blue:focus {
	background-color: #2ba9e3;
	border-color: #004c6f;
	box-shadow: inset 0 1px 0 #7cd4fc, inset 0 -1px 0 #2696c9, inset 0 0 0 1px #59b7e3;
}
.button-blue:active {
	background-color: #2ba9e3;
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}

.button-green {
	background-color: #97cc76;
	background-image: linear-gradient(to bottom, #97cc76, #8bcc62);
	border: 1px solid #5f993a;
	box-shadow: inset 0 1px 0 #c6e6b3, inset 0 -1px 0 #79b356, inset 0 0 0 1px #a4cc8b, 0 2px 4px rgba(0, 0, 0, 0.2);
	color: White;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-green:hover, .button-green:focus {
	background-color: #8bcc62;
	border-color: #326612;
	box-shadow: inset 0 1px 0 #c6e6b3, inset 0 -1px 0 #79b356, inset 0 0 0 1px #a4cc8b;
}
.button-green:active {
	background-color: #8bcc62;
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}

.button-orange {
	background-color: #f58a38;
	background-image: linear-gradient(to bottom, #f58a38, #f57c20);
	border: 1px solid #c25706;
	box-shadow: inset 0 1px 0 #ffb984, inset 0 -1px 0 #db6f1d, inset 0 0 0 1px #f59851, 0 2px 4px rgba(0, 0, 0, 0.2);
	color: White;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-orange:hover, .button-orange:focus {
	background-color: #f57c20;
	border-color: #773300;
	box-shadow: inset 0 1px 0 #ffb984, inset 0 -1px 0 #db6f1d, inset 0 0 0 1px #f59851;
}
.button-orange:active {
	background-color: #f57c20;
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}

.button-red {
	background-color: #ed6d64;
	background-image: linear-gradient(to bottom, #ed6d64, #ed574c);
	border: 1px solid #ba3329;
	box-shadow: inset 0 1px 0 #ffb0aa, inset 0 -1px 0 #d44d44, inset 0 0 0 1px #ed837b, 0 2px 4px rgba(0, 0, 0, 0.2);
	color: White;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-red:hover, .button-red:focus {
	background-color: #ed574c;
	border-color: #870c03;
	box-shadow: inset 0 1px 0 #ffb0aa, inset 0 -1px 0 #d44d44, inset 0 0 0 1px #ed837b;
}
.button-red:active {
	background-color: #ed574c;
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
