
.neneya-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.neneya-form .form-group {
	position: relative;
	margin-top: 10px;
}

.neneya-form .form-group input {
	width: 100%;
	padding: 16px 10px 6px;
	font-size: 1em;
	border: 1px solid #ccc;
	border-radius: 6px;
	outline: none;
	transition: border-color 0.3s ease;
}

.neneya-form .form-group input:focus {
	border-color: #f28c1d;
}

.neneya-form .form-group label {
	position: absolute;
	top: 16px;
	left: 10px;
	color: #888;
	font-size: 1em;
	pointer-events: none;
	transition: all 0.2s ease;
	background: white;
	padding: 0 4px;
	z-index:9;
}

.neneya-form .form-group input:focus + label, .neneya-form .form-group input:not(:placeholder-shown) + label {
	top: -8px;
	left: 8px;
	font-size: 0.85em;
	color: #f28c1d;
}

.neneya-form button {
	background-color: #FF5841;
	color: white;
	border: none;
	padding: 12px;
	cursor: pointer;
	font-size: 1em;
	border-radius: 6px;
}

.neneya-form button:hover {
	background-color: #FF5841;
	opacity: 0.7;
}

.neneya-form .message {
	margin-top: 10px;
	font-size: 0.9em;
}









