* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	background-color: #f4f7fa;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
}

.form-container {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px;
}

h2 {
	text-align: center;
	margin-bottom: 25px;
	color: #333;
	font-size: 24px;
	font-weight: 600;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	font-size: 14px;
	color: #555;
	margin-bottom: 8px;
	font-weight: 500;
}

input[type="text"],
select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	color: #333;
	background-color: #f9f9f9;
	transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
select:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
	background-color: #fff;
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	cursor: pointer;
}

.button {
	width: 100%;
	padding: 12px;
	background-color: #007bff;
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
}

.button:active {
	transform: translateY(0);
}

.email_ok {
    border: 1px solid rgb(32, 170, 20) !important;
}

.email_bad {
    border: 1px solid red !important;
}

.output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.output.loading {
    background-color: #e9f7ff;
    color: #007bff;
    border: 1px solid #007bff;
}

.output.success {
    background-color: #e6ffed;
    color: #28a745;
    border: 1px solid #28a745;
}

.output.error {
    background-color: #ffe6e6;
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Responsive design */
@media (max-width: 480px) {
	.form-container {
		padding: 20px;
		max-width: 100%;
	}

	h2 {
		font-size: 20px;
	}
}