/*
    Lisa Monpierre
    EFRITS SAS
 
    Training center website
    Dec. 2021
*/

/**/

#contact
{
	width: 90%;
	height: 100%;
	margin-bottom: 20px;
}

#contact p
{
	text-align: left;
	
	width: 100%;
}

.contactLabel
{
	height: 40px;
	width: 70%;
	display: inline;
	
    margin: 0 0 10px 0;

    outline: none;
    border: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;

	background: transparent;
	font-size: 20px;
	color: black;
}
  select>option:hover
    {
        color: #1B517E;
        cursor: pointer;
    }
.contactInputSelect
{
	height: 40px;
	display: inline;
	
    margin: 0 0 10px 0;

    outline: none;
    border: none;
    border-bottom: 1px solid #00ff00;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;

	background: transparent;
	font-size: 20px;
	color: #373737;
}

.contactInput
{
	height: 40px;
	display: inline;
	
    margin: 0 0 10px 0;

    outline: none;
    border: none;
    border-bottom: 1px solid #00ff00;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;

	background: transparent;
	font-size: 20px;
	color: #373737;
}

.contactButton
{
	width: 100%;

	float: center;
	padding: 15px;
	margin: 0 auto;

	color: black;
	background-color: transparent;
	font-size: 20px;
	font-weight: bold;
}

.contactInputText
{
	height: 200px;
	width: 100%;
	
    margin: 0 0 10px 0;
    padding: 0;

    outline: none;
    border: none;
    border-bottom: 1px solid #00ff00;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;

	background: transparent;
	font-size: 20px;
	color: black;
}

.contactReturn
{
	width: 100%;
	height: 50px;

	float: left;
	padding: 10px;
	margin: 0;
	margin-top: 20px;
	
	color: #FAF9F9;
	background-color: rgba(200, 143, 26, 1);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.contactRGPD
{
	font-size: 11px;
	text-align: left;
	font-style: italic;
}

.contactRGPD a
{
	color: black;
}

.contactRGPD a:hover
{
	color: #454859;
}

@media 	only screen and 
		(min-width: 741px) 
		/* portrait tablet */
{
	.contactInput, .contactInputSelect
	{
		width: 100%;
	}
}

@media 	only screen and 
		(max-width: 740px) 
		/* portrait mobile */
{
	.contactInput, .contactInputSelect
	{
		width: 100%;
	}
}

@media 	only screen and 
		(min-width : 1825px) 
		/* desktop */
{
	.contactInput, .contactInputSelect
	{
		width: 70%;
	}
}

@media 	only screen and 
		(orientation: landscape) and 
		(min-width: 1601px) and 
		(max-width: 1824px) 
		/* desktop */
{
	.contactInput, .contactInputSelect
	{
		width: 70%;
	}
}

@media 	only screen and 
		(orientation: landscape) and 
		(min-width: 1225px) and 
		(max-width: 1600px) 
		/* laptop */
{
	.contactInput, .contactInputSelect
	{
		width: 70%;
	}
}

@media 	only screen and 
		(orientation: landscape) and 
		(min-width: 961px) and 
		(max-width: 1224px) 
		/* landscape tablet */
{
	.contactInput, .contactInputSelect
	{
		width: 100%;
	}
}

@media 	only screen and 
		(orientation: landscape) and 
		(max-device-width: 960px) 
		/* landscape mobile */
{
	.contactInput, .contactInputSelect
	{
		width: 100%;
	}
}

