#emaids-form-wrapper {
	max-width: 360px;
	margin: 40px auto;
	text-align: center;
}

.emaids-toggle {
	all: unset;
	cursor: pointer;
	background: #bde5ef;
	color: #003366;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 20px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.emaids-toggle:hover {
	background: #a8d8e8;
}

.emaids-toggle.open svg {
	transform: rotate(180deg);
}

.emaids-dropdown {
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.emaids-dropdown.closed {
	max-height: 0;
}

.emaids-dropdown.open {
	max-height: 1200px;
}

#emaids-form-wrapper form {
	background: #fff;
	padding: 24px;
	border-radius: 14px;
	margin-top: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	text-align: left;
}

#emaids-form-wrapper label {
	display: block;
	margin-top: 12px;
	font-size: 15px;
	font-weight: 500;
	color: #333;
}

#emaids-form-wrapper input {
	width: 100%;
	padding: 12px;
	margin-top: 6px;
	border-radius: 8px;
	font-size: 15px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

#emaids-form-wrapper button[type="submit"] {
	width: 100%;
	margin-top: 20px;
	padding: 14px;
	border: none;
	border-radius: 8px;
	background-color: #0096f0;
	color: white;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
}

#emaids-form-wrapper button[type="submit"]:hover {
	background-color: #007acc;
}

#emaids-form-wrapper button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.emaids-note {
	text-align: center;
	font-size: 13px;
	color: #555;
	margin-top: 12px;
}

.emaids-success {
	display: none;
	margin-top: 20px;
	background: #d4edda;
	color: #155724;
	padding: 12px;
	border-radius: 10px;
	text-align: center;
	font-size: 14px;
}
