/* Style formulaire */

#Commentaire {
	margin-top: 3%;
}

/* Personnalisation champs de saisie et bouton du formulaire */

input {
	width: 300px;
	height: 50px;
	margin-top: 10px;
	margin-top: 5%;
	border: 1px solid #ccc;
	border-radius: 10px;
	text-align: center;
	font-weight: bold;
}

#submitButton {
	width: 300px;
	height: 50px;
	margin-top: 10px;
	margin-top: 5%;
	border: 1px solid #888;
	border-radius: 10px;
	font-family: 'Trebuchet MS','Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
	font-weight: bold;
	color: #fff;
}

#submitButton:hover {
	color: #000;
	background-color: #fff;
}

.container {
	width: 80%;
	margin: auto;
	padding: 10px;
}

.screen {
	position: relative;
	border-radius: 15px;
	background: #3e3e3e;
}

.screen:after {
	content: '';
	display: block;
	z-index: -1;
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	left: 20px;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.screen-header {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	background: #4d4d4f;
}

.screen-header-left {
	margin-right: auto;
}

.screen-header-button {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 3px;
	border-radius: 8px;
	background: white;
}

/* Personnalisation bouton à gauche simulant une fenêtre */

.screen-header-button.close {
	background: #ed1c6f;
}

.screen-header-button.maximize {
	background: #e8e925;
}

.screen-header-button.minimize {
	background: #74c54f;
}

.screen-header-right {
	display: flex;
}

/* Création 3 bulles --> settings */

.screen-header-ellipsis {
	width: 3px;
	height: 3px;
	margin-left: 2px;
	border-radius: 8px;
	background: #999;
}

.screen-body {
	display: flex;
}

.screen-body-item {
	flex: 1;
	padding: 50px;
}

.screen-body-item.left {
	display: flex;
	flex-direction: column;
}

.LI-profile-badge {
	margin-top: 25px;
	margin-bottom: 10px;
}

/* Contact */

.app-title {
	display: flex;
	position: relative;
	flex-direction: column;
	font-size: 26px;
	color: #888;
}

.app-title:after {
	content: '';
	display: block;
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 25px;
	height: 4px;
	background: #000;
}

.app-contact {
	margin-top: auto;
	font-size: 12px;
	color: #888;
}

.app-form-group {
	margin-bottom: 15px;
}

.app-form-group button {
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 15px;
}

.app-form-group.message {
	width: 100%;
	margin-top: 40px;
}

.app-form-group.buttons {
	margin-bottom: 0;
	text-align: right;
}

.valider {
	margin-left: -20px;
}

.app-form-control {
	width: 100%;
	padding: 10px 0;
	border: none;
	border-bottom: 1px solid #666;
	font-size: 14px;
	outline: none;
	color: #ddd;
	background: none;
	transition: border-color .2s;
}

.app-form-control::placeholder {
	color: #666;
}

.app-form-control:focus {
	border-bottom-color: #ddd;
}

.app-form-button {
	border: none;
	font-size: 14px;
	outline: none;
	color: #fff;
	background: none;
	cursor: pointer;
}

.app-form-button:hover {
	color: #000;
}

/* Partie responsive */

@media screen and (max-width:520px) {
	.screen-body {
		flex-direction: column;
	}

	.screen-body-item.left {
		margin-bottom: 30px;
	}

	.app-title {
		flex-direction: row;
	}

	.app-title span {
		margin-right: 12px;
	}

	.app-title:after {
		display: none;
	}
}

@media screen and (max-width:600px) {
	.screen-body {
		padding: 20px;
	}

	.screen-body-item {
		padding: 0;
	}

	.container {
		width: 100%;
	}

	.LI-profile-badge {
		display: none;
	}
}