.engajae-reset-status {
	max-width: 480px;
	margin: 0 auto;
	padding: 24px;
	border: 1px solid #f3c6a8;
	background: #fff5ee;
	border-radius: 12px;
	text-align: center;
}

.engajae-reset-status p {
	margin: 0 0 14px;
	color: #7a3b0e;
	font-size: 14px;
}

.engajae-reset-status a {
	display: inline-block;
	padding: 12px 22px;
	background: #ea6410;
	color: #fff;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

/* Formulário de nova senha (desenhado pelo próprio shortcode). Uso
   seletores específicos + !important em pontos-chave pra não perder pro
   CSS do tema/Bricks. */
.engajae-reset-form {
	max-width: 100%;
	margin: 0 auto;
}

.engajae-reset-form .engajae-reset-form-group {
	margin-bottom: 18px;
	text-align: left;
}

.engajae-reset-form .engajae-reset-form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #222;
}

.engajae-reset-input-wrap {
	position: relative;
}

.engajae-reset-form .engajae-reset-input-wrap input {
	width: 100%;
	padding: 0px 46px 0px 15px;
	border: 1px solid #ddd !important;
	border-radius: 10px !important;
	font-size: 14px;
	color: #222;
	background: #fff;
	box-sizing: border-box;
}

.engajae-reset-form .engajae-reset-input-wrap input:focus {
	outline: none;
	border-color: #ea6410 !important;
	box-shadow: 0 0 0 1px #ea6410;
}

.engajae-reset-form .engajae-reset-form-message {
	min-height: 20px;
	margin-bottom: 14px;
	font-size: 13px;
	line-height: 1.4;
}

.engajae-reset-form .engajae-reset-form-message.is-error {
	color: #c0392b;
}

.engajae-reset-form .engajae-reset-form-message.is-success {
	color: #2e7d32;
	font-weight: 600;
}

.engajae-reset-form button[type="submit"] {
	display: block;
	width: 100%;
	padding: 14px 22px !important;
	background: #ea6410 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 10px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.15s;
}

.engajae-reset-form button[type="submit"]:hover {
	opacity: 0.92;
}

.engajae-reset-form button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Botão de olho (mostrar/ocultar senha) dentro do campo */
.engajae-reset-toggle {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	background: none;
	border: none;
	color: #888;
	cursor: pointer;
}

.engajae-reset-toggle:hover {
	color: #ea6410;
}

/* Por padrão mostra o olho aberto; ao clicar (senha visível) troca pro
   olho cortado. */
.engajae-reset-toggle .engajae-reset-eye-off {
	display: none;
}

.engajae-reset-toggle.is-showing .engajae-reset-eye {
	display: none;
}

.engajae-reset-toggle.is-showing .engajae-reset-eye-off {
	display: inline-block;
}