form {
	margin: 5%;
}

label {
	font-size: 1.5rem;
}

input {
	font-size: 1.2rem;
}

.loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3D6098;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite;
	margin: 0 auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.popup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

}

.popup-content {
	text-align: center;
	width: 200px;
	height: max-content;
}

.popup-content>p {
	margin-bottom: 0;
}

.popup .close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
	color: #333;
}

.form-info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 5%;
	margin-left: 0;
	margin-right: 0;
}

.form-input {
	display: flex;
	flex-direction: column;
}

.form-message {
	display: flex;
	justify-content: center;

}

.pp-text {
	font-size: 1.2rem;
	margin: 0 auto;
}

.pp-text>a {
	color: #3D6098;
	text-decoration: none;
	transition: color 75ms ease-out;
	font-weight: bold;
}

input[type=checkbox] {
	width: 20px;
	height: 20px;
}

input[type='checkbox']:checked {
	background: #abd;
}

.pp-text>a:hover {
	color: #F04B4C;
}

.required-text {
	font-size: 10px;
	color: #6B6B6B;
}

.message-field {
	width: 100%;
}

.input-design {
	border: none;
	border-bottom: #3D6098 2px solid;
	background-color: #f6f6f6;
	transition: box-shadow 300ms ease;
}

.input-design:focus {
	outline: none;
	border-radius: 2px;
	box-shadow: 0 5px 4px -4px gray;
}

textarea {
	font-size: 1.2rem;
	width: 100%;
	height: 18px;
	resize: none;
	overflow: hidden;
}

.submit-btn {
	font-size: 1rem;
	padding: 8px 15px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 2%;
	margin-bottom: 0;
	/* transition: position 800ms; */
	cursor: pointer;
}

@media screen and (max-width: 1150px) {
	.form-info {
		flex-direction: column;
	}

	.input-small {
		width: 100%;
		max-width: 100%;
	}


}