select {
	border: 1px solid rgba(255,255,255,0.12);
	background-color: rgba(255,255,255,0.12);
	height: 56px;
	padding: 12px 14px;
	width: 100%;
	box-sizing:border-box;
	outline: 0;
	border-radius: 16px;
	color: var(--lightestColor);
	font-size: 16px;
}
select:focus {	
	background-color: rgba(255,255,255,0.18);
	border-color: rgba(221, 200, 164, 0.4);
}

option {	
	background-color: #274653;
	outline: 0;
}

input {
	border: 1px solid rgba(255,255,255,0.12);
	background-color: rgba(255,255,255,0.12);
	height: 56px;
	padding: 12px 14px;
	width: 100%;
	box-sizing:border-box;
	outline: 0;
	border-radius: 16px;
	color: var(--lightestColor);
	font-size: 16px;
}

input:focus {	
	background-color: rgba(255,255,255,0.18);
	border-color: rgba(221, 200, 164, 0.4);
}


.dateInput {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23dcc8a4' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Crect x='3.5' y='5' width='17' height='15.5' rx='2.5'/%3E%3Cpath d='M7.5 3.5v3M16.5 3.5v3M3.5 9.5h17'/%3E%3Cpath d='M8 13h.01M12 13h.01M16 13h.01M8 17h.01M12 17h.01'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position-y: center;
    cursor: pointer;
	background-size: 18px;
	background-position-x: 14px;
	padding-left: 42px;
    outline: 0;
}

textarea {
	border: 1px solid rgba(255,255,255,0.12);
	background-color: rgba(255,255,255,0.12);
	height: 172px;
	padding: 14px;
	width: 100%;
	box-sizing:border-box;
	outline: 0;
	border-radius: 18px;
	color: var(--lightestColor);
	font-size: 16px;
	resize: vertical;
}

::placeholder {
	color: rgba(238, 246, 247, 0.56);
}

input[type=button], .button  {
	width: auto;
	font-size: var(--h2fontSize);
	font-weight: 700;
	color: var(--darkColor);
	background: linear-gradient(135deg, var(--sandColor), #f2e7cf);
	height: 56px;
	cursor: pointer;
	transition: 0.35s ease;
	box-sizing:border-box;
	outline: 0;
	vertical-align: middle;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}

input[type=button]:hover, .button:hover {
	background: linear-gradient(135deg, #f4ead5, #fff7eb);
	color: var(--darkColor);
	transform: translateY(-2px);
}

input[type=date]{
    font-size: unset;
}

.notice {
	color:  var(--errorColor);
	transition: 1s;
	overflow: hidden;
	font-size: 13px;
	opacity: 0;
	padding-top: 8px;
}

.formGrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 18px;
	margin-top: 22px;
}

.formField {
	position: relative;
}

.formFieldWide {
	grid-column: 1 / -1;
}

.formLabel {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(238, 246, 247, 0.72);
}

.formActions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin-top: 22px;
}

.submitNotice {
	max-width: 56ch;
}

@media (max-width: 720px) {
	.formGrid {
		grid-template-columns: 1fr;
	}
}