
/* Body */

body {
	position: relative;
	margin: 0;
	background: linear-gradient(135deg, rgb(17 23 43) 0%, rgb(0 239 227) 0%, rgb(17 23 43) 100%) !important;
}

.none {
	display: none !important;
}

.box .error {
	color: var(--error) !important;
	font-size: .9em !important;
}

.box .color_1 {
	color: #00c679 !important;
}
.box .color_2 {
	color: #FFC107 !important;
}
.box .color_3 {
	color: #CD3737 !important;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
div,
span,
label,
input,
select,
textarea {
	font-family: Roboto, Calibri, sans-serif;
	line-height: 1em;
}
p {
	font-family: Roboto, Calibri, sans-serif;
	font-size: 0.875em;
	margin-bottom: 0;
}
.visible {
	display: block !important;
}
.not_visible {
	display: none !important;
}


/* Box */

.box {
	position: relative;
	width: 800px;
	margin: 5% auto;
	padding: 0px;
	background-color: #fff;
	border-radius: 10px;
	text-align: center;
}

.box.connexion form {
	margin-bottom: 3em;
}

.box .grid {
	display: grid;
}
.box .grid.grid_col_1 {
	grid-template-columns:1fr;
}
.box .grid.grid_col_2 {
	grid-template-columns:1fr 1fr;
}
.box .logo img {
	width: 30%;
	margin: 5% auto;
}
.box .title {
	padding: 2% 5%;
	color: #fff;
	background-color: #11172b;
	text-align: center;
	letter-spacing: 1px;
	border-radius: 10px 10px 0 0;
}
.box .title h1 {
	margin: 0px;
	font-family: Roboto, Calibri, sans-serif;
	font-weight: 400;
	font-size: 1.250em;
}
.box.error .title {

}
.box .content {
	padding: 0% 6% 60px;
	color: #11172b;
	text-align: center;
}
.box .content p {
	margin: 0;
	margin-bottom: 15px;
	font-size: 0.9rem;
	font-weight: 500;
}
.box .content a,
.box .content p a {
	color: #11172b;
	font-size: 0.9rem;
	font-weight: 500;
}
.box .content a:hover,
.box .content p a:hover {
	color: #00efe3;
}
.box .content a {
	display: block;
	width: fit-content;
	margin: auto;
	padding-bottom: 20px;
	transition: all 0.5s;
}
.box .content form div label {
	display: block;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
	font-family: Roboto, Calibri, sans-serif;
	font-weight: 500;
	font-size: inherit !important;
}
.box .content form div input:focus {
	color: var(--color-1);
}
.box .content form div.notification p {
	margin: 30px auto;
}
.box .content form div.notification p.error {
	color: var(--color-2);
}
.box .content form div.notification p.notif {
	color: #e48800;
}
.box .content form div.notification p.ok {
	color: #16b954;
}
.box .content form div.resultat {

}
.box .content form div.resultat p {
	margin-bottom: 30px;
	font-size: 1.2em;
	font-weight: bold;
}

.box .content form div.resultat p.success {
	color: #00c679;
}
.box .content form div.resultat p.error {
	color: #CD3737;
}
.box .content form button,
.box .content form input[type=submit] {
	font-family: Roboto, Calibri, sans-serif;
	padding: 5px 40px;
	color: #cccccc;
	background-color: transparent;
	font-size: .9em;
	border: 2px solid #cccccc;
	font-weight: 600;
	border-radius: 50px;
	outline: none;
	transition: all 0.5s;
	cursor: pointer;
}
.box .content form button.valid,
.box .content form input[type=submit] {
	color: #11172b;
	border: 2px solid #11172b;
}
.box .content form button.valid:hover,
.box .content form input[type=submit]:hover {
	color: #00efe3;
	border: 2px solid #00efe3;
}

.text_empty_espace {
	margin-top: 1em !important;
	font-weight:bold;
}

.box .block {
	padding: 15px 0 0;
} 

.box .block_in {
	position:relative;
	width: 80%;
	margin: 0 auto 15px;
	transition: all 0.5s;
}
.box .block_in i {
	position: absolute;
	top: 50%;
	left: 80px;
	transform: translate(-50%, -50%);
	color:#11172b;
	transition: all 0.5s;
}
.box .block_in .fas.fa-eye,
.box .block_in .fas.fa-eye-slash {
	position: absolute;
    right: 60px;
    width: fit-content;
    left: inherit;
	cursor: pointer;
}
.box .block_in input {
	text-align: center;
	font-family: Roboto, Calibri, sans-serif;
	color: #11172b;
	outline: none;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	padding: 7px 40px;
	width: 80%;
	transition: all 0.5s;
}
.box .block_in:focus-within input {
	border: 1px solid rgb(0 239 227);
}
.box .block_in:focus-within i {
	color: var #11172b;
}

.box .block_in.error input {
	border: 1px solid var(--error);
}
.box .block_in.error i {
	color: var(--error);
	font-size: initial !important;
}


/* PAGE CREATION COMPTE  */

.box.create_espace {
	
}
.box.create_espace form {
	margin: 30px 0 30px;
}
.box.create_espace form.confirm {
    display: grid;
    grid-gap: 25px;
	margin: 90px 0 30px;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

.box.create_espace .logo img {
	margin: 1% auto 2%;
}

.box.create_espace .content p {
	margin-bottom: 10px;
}


.box.create_espace .content a {
	padding-bottom: 15px;
	transition: all 0.5s;
}

.box.create_espace .block_in {
	margin: auto;
	width: inherit;
}
.box.create_espace .block_in input {
	text-align: initial !important;
}

.box.create_espace .compackt {
	padding: 0 10%;
    font-size: .875rem;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.25em;
    color: #12182C;
}

.box.create_espace .block {
	padding: 5px;
}

.box.create_espace .content form div label {
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 10px;
	padding-bottom: 0;
	text-align: initial;
}
.box.create_espace .block_in i {
	left: 25px;
}
.box.create_espace .block_in input {
	width: 100% !important;
}
.box.create_espace .block_in.error input {
	border: 1px solid var(--error);
}
.box.create_espace .block_in.error i {
	color: var(--error);
	font-size: initial !important;
}

.box.create_espace .error {
	text-align: initial;
}

.box.create_espace .valid {
	display: inline-block;
	padding: 5px 40px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #11172b;
	border: 2px solid #11172b;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.5s;
}
.box.create_espace .valid:hover {
	color: #00efe3;
	border: 2px solid #00efe3;
}

.box.create_espace .notification {
	padding: 15px;
	font-weight: bold;
}


.box.create_espace .message_feedback {
	text-align: initial;
	font-size: 1em;
	color: var(--color-1);
}
.box .btn.create_espace {
	width: fit-content;
	margin: auto;
	padding: 10px 25px;
	font-weight: 600;
	color: #0a7077;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.5s;
}
.box .btn.create_espace:hover {
	color: #00efe3;
}

.box .tri_right {
	position: absolute;
	width: 0;
	height: 0;
	border-bottom: 75px solid var(--color-2);
	border-right: 160px solid transparent;
	left: 0;
	bottom: 0;
	border-radius: 0 0 0 10px;
}
.box .rec_center {
	position: absolute;
	width: 100%;
	height: 10px;
	background: var(--color-2);
	bottom: 0;
	left: 0;
	border-radius: 0 0 10px 10px;
}
.box .tri_left {
	position: absolute;
	width: 0;
	height: 0;
	border-bottom: 75px solid var(--color-2);
	border-left: 160px solid transparent;
	right: 0;
	bottom: 0;
	border-radius: 0 0 10px 0;
}

/*-----------------------------------------------------------------------------------------
---------------------  VERSION ECRANS LAPTOPS
-----------------------------------------------------------------------------------------*/

@media screen and (max-width:1600px) {

	.box{
		margin: 2% auto !important;
	}

}

/*-----------------------------------------------------------------------------------------
---------------------  VERSION ECRANS TABLETTES
-----------------------------------------------------------------------------------------*/

@media screen and (max-width:1280px) {

	/* Box */
	.box {
		width: 100% !important;
		margin: 0% !important;
		border-radius: 0px;
	/*	height: 100vh;*/
	}

	.box.create_espace {
		height: inherit !important;
	}

	.box .title {
		padding: 2% 5%;
		border-radius: 0 !important;
	}
	.box .tri_right {
		border-radius: 0 !important;
	}
	.box .tri_left {
		border-radius: 0 !important;
	}
	.box .logo img {

	}
	.box .title h1 {
		font-size: 1.5em;
		line-height: 1.3em;
	}
	.box .content p {
		margin: 0% auto 1%;
	}
	.box .block {
		padding: 7px 0 0;
	}
	.box .block_in {
		width: 100%;
	}
	.box .block_in i {
		left: 6vw;
	}
	.box .content form {
		margin-bottom: 30px;
		width: inherit !important;
		box-shadow: inherit !important;
	}
	.box .content form div input {
		
	}
	.box .content form div input {
		width: 90%;
	}
	.box.create_espace .compackt{
		padding: inherit !important;
	}
	.box .btn.create_espace {
		margin-top: 15px;
		margin-bottom: 40px;
	}

	/* ////////////////////////////// ESPACE ELEVE ////////////////////////////// */

	body.espace {
		width: 100%;
	}

}

/*-----------------------------------------------------------------------------------------
---------------------  VERSION ECRANS SMARTPHONES
-----------------------------------------------------------------------------------------*/

@media screen and (max-width:600px) {

	.box .logo img {
		width: 60%;
		margin: 5% auto;
	}

	.box .block_in i {
		left: 35px;
	}

}