/* ---------------------------------------------------
	
	EUROPE SOUND AND LIGHT - FORM CSS
	
----------------------------------------------------- */


/* ---------------------------------------------------
	  FORM
----------------------------------------------------- */


/* form validator */

.fv-help-block {
	color: #111;
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: 0;
	margin-top: 4px;
}


/* input */

form input {
	background-color: #fff !important;
	border: 1.5px solid #AAA !important;
	border-radius: .25rem !important;
	color: #111 !important;
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	font-size: 1em;
	height: 60px !important;
	letter-spacing: .0125em;
	padding: .75rem .75rem .55rem .75rem !important;
	white-space: nowrap;
}

form input:focus {
	background-color: #fff;
	border-color: #222 !important;
	box-shadow: 0 0 0 .2rem rgba(155, 155, 155, .25) !important;
	color: #222;
	font-size: 1em;
	font-weight: 400;
	outline: 0;
}

form input::placeholder {
	color: #222;
}


/* textarea */

form textarea {
	background-color: #fff !important;
	border: 1.5px solid #AAA !important;
	border-radius: .25rem !important;
	color: #111 !important;
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	font-size: 1em;
	letter-spacing: .0125em;
	padding: 1.25rem .75rem .55rem .75rem !important;
}

form textarea:focus {
	background-color: #fff;
	border-color: #222 !important;
	box-shadow: 0 0 0 .2rem rgba(155, 155, 155, .25) !important;
	color: #222;
	font-size: 1em;
	font-weight: 400;
	outline: 0;
}

textarea.form-control {
	min-height: calc(16em + .75rem + calc(var(--bs-border-width) * 2));
	resize: none;
}


/* select */

select.form-select {
	border: 1.5px solid #AAA !important;
	border-radius: .25rem !important;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: .95rem;
	height: 60px !important;
	padding: 10px 12px !important;
}

select.form-select:focus {
	background-color: #fff;
	border-color: #222 !important;
	box-shadow: 0 0 0 .2rem rgba(155, 155, 155, .25) !important;
	color: #222;
	font-size: 1em;
	font-weight: 400;
	outline: 0;
}


/* form floating */

form label {
	color: #111;
	font-size: .9em;
	font-weight: 400;
	letter-spacing: -.0125em;
	font-family: 'Eina 01', Arial, sans-serif;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
	height: calc(3.25rem + calc(var(--bs-border-width) * 2));
	line-height: 1.25;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
	opacity: .5;
	transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

.form-floating>label {
	position: absolute;
	top: 0;
	left: 5px;
	height: 100%;
	padding: .55rem .75rem .5rem .75rem;
	pointer-events: none;
	border: 1px solid transparent;
	transform-origin: 0 0;
	transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}


/* buttons*/

button {
	align-items: center;
	border: 0;
	border-radius: 4px;
	background: #DDD;
	color: #111;
	display: inline-flex;
	font-family: 'MicrogrammaDBolExt', Arial, sans-serif;
	font-size: 1em;
	justify-content: center;
	outline: none !important;
	padding: 9px 14px 7px 14px;
	white-space: nowrap;
	transition: all 0.3s;
}