* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	html, body {
		height: 100%;
		font-family: Arial, sans-serif;
		background: url("../images/home.webp") no-repeat center center/cover;
		z-index: -1;
	}

	header {
		position: fixed;
		top: 0;
		left: 0;
		height: 100px;
		width: 100%;
		background-color: var(--header);
		z-index: 10;
		display: flex;
		flex-direction: column;
		color: var(--blanc);
		text-align: center;
		font-size: 1.5em;
	}

	header h1 {
		width: 50%;
		text-align: left;
		margin-left: 20px;
		font-size: 1.5em;
	}

	main {
		top: 0;
		left: 0;
		margin-top: 0
	}

.login-box {
		position: absolute ;
			overflow : auto;
	z-index: 99;
	top: 10%;
	left: 30%;
		background: rgba(0, 0, 0, 0.6);
		margin: 100px auto;
		padding: 2rem;
		border-radius: 12px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
		color: white;
		max-width: 400px;
		width: 100%;
}

	footer {
		position: fixed;
		bottom: 0;
		left: 0;
		height: 100px;
		width: 100%;
		background-color: var(--header);
		z-index: 10;
		display: flex;
		flex-direction: column;
		color: var(--blanc);
		text-align: center; 
	}

 .login-box h2 {
		margin-bottom: 1.5rem;
		text-align: center;
	}

	.input-group {
		margin-bottom: 1rem;
	}

	.input-group label {
		display: block;
		margin-bottom: 0.5rem;
	}

	.input-group input {
		width: 100%;
		padding: 0.8rem;
		border: none;
		border-radius: 8px;
	}

        .login-btn {
            width: 100%;
            padding: 0.8rem;
            background: #4CAF50;
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

	.login-btn:hover {
		background: #45a049;
	}


/*****************************Le SWITCH ************************ */

/* The switch - the box around the slider */
	.switch {
	  position: relative;
	  display: inline-block;
	  width: 60px;
	  height: 34px;
	}

/* Hide default HTML checkbox */
	.switch input {
	  opacity: 0;
	  width: 0;
	  height: 0;
	}

/* The slider */
	.slider {
	  position: absolute;
	  cursor: pointer;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background-color: #ccc;
	  -webkit-transition: .4s;
	  transition: .4s;
	}
	
	.slider:before {
	  position: absolute;
	  content: "";
	  height: 26px;
	  width: 26px;
	  left: 4px;
	  bottom: 4px;
	  background-color: white;
	  -webkit-transition: .4s;
	  transition: .4s;
	}

	input:checked + .slider {
	  background-color: #41c1ba;
	}
	
	input:focus + .slider {
	  box-shadow: 0 0 1px #2196F3;
	}
	
	input:checked + .slider:before {
	  -webkit-transform: translateX(26px);
	  -ms-transform: translateX(26px);
	  transform: translateX(26px);
	}
	
	/* Rounded sliders */
	.slider.round {
	  border-radius: 34px;
	}
	
	.slider.round:before {
	  border-radius: 50%;
	} 


