﻿/* Reset main.css */
.encharge-form form {
	margin-bottom: 0;
	padding: 0;
	background: none;
}
.encharge-form input[type="text"],
.encharge-form input[type="date"],
.encharge-form input[type="number"],
.encharge-form input[type="email"],
.encharge-form input[type="tel"] {
	padding: 15px;
	width: 100%;
	background: #fff;
	border: 1px solid #000;
}
.encharge-form textarea {
	padding: 15px;
	width: 100%;
	height: 100px;
	background: #fff;
	border: 1px solid #000;
}
.encharge-form select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding: 15px;
}


.encharge-form {
	padding: 15px;
	display: grid;
	grid-gap: 15px;
}
.encharge-form form {
	display: grid;
	grid-gap: 15px;
	accent-color: #3a5e6d;
}
.encharge-form-group {
	display: grid;
	grid-gap: 5px;
	align-items: center;
}
.encharge-form-group:has(input[type="checkbox"]) {
	grid-template-columns: 20px auto;
	padding-block: 15px;
	gap: 10px;
}
.encharge-form-group input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	grid-column: 1;
	grid-row: 1;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 3px;
	outline: none;
}

.encharge-form-group input[type="checkbox"]:checked {
	background-color: #000;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}
.encharge-form-group:has(input[type="checkbox"]) label {
	grid-column: 2;
	grid-row: 1;
}

.encharge-form label p {
    display: inline;
}
.encharge-form label,
.encharge-form__checkbox-list {
	font-size: 18px;
	color: #000;
}
.encharge-form input[type="text"],
.encharge-form input[type="date"],
.encharge-form input[type="number"],
.encharge-form input[type="email"],
.encharge-form input[type="tel"],
.encharge-form textarea,
.encharge-form select {
	padding: 15px;
	background-color: #fff;
	border: 1px solid #000;
	width: 100%;
	font: normal 400 18px var(--font-family-primary);
}
.encharge-form__checkbox-list {
	display: grid;
	grid-gap: 5px;
}

.encharge-form h2 {
	font: normal 400 20px var(--font-family-primary);
	color: var(--color-blue);
}

.encharge-form__input-group--submit {
	display: flex;
	align-items: flex-start;
}
.encharge-form-submit-button {
	background-color: var(--color-teal-light) !important;
	color: #fff;
	opacity: 1;
}
.encharge-form-submit-button:hover,
.encharge-form-submit-button:focus-visible {
	background-color: var(--color-teal-light-lightened) !important;
}

@media screen and (min-width: 580px) {
}

@media screen and (min-width: 800px) {
	.encharge-form {
		padding: 40px;
	}
	.encharge-form-group {
		grid-gap: 20px;
		grid-template-columns: 150px 1fr;
	}
	.encharge-form-submit-button {
		margin-left: 170px !important;
	}
	.encharge-form-group:has(input[type="checkbox"]) {
		padding-left: 170px;
	}

}

@media screen and (min-width: 1000px) {
}