/* ==========================================================================
   SPIRITUALIZE RESET PASSWORD WIDGET - FRONTEND STYLES
   ========================================================================== */

/* Container Principal */
.spz-reset-password-widget {
	margin: 0 auto;
	padding: 40px;
	background: #ffffff;
	border-radius: 8px;
	box-sizing: border-box;
}

/* Título */
.spz-reset-title {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 600;
	color: #333;
	text-align: center;
}

/* Subtítulo */
.spz-reset-subtitle {
	display: block;
	margin: 0 0 24px;
	font-size: 14px;
	color: #666;
	text-align: center;
	line-height: 1.6;
}

/* Campos de Formulário */
.spz-reset-field {
	margin-bottom: 20px;
}

.spz-reset-label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.spz-reset-input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	transition: all 0.2s;
	box-sizing: border-box;
}

.spz-reset-input:focus {
	outline: none;
	border-color: #6EC1E4;
}

.spz-reset-input::placeholder {
	color: #999;
}

/* Requisitos de Senha */
.spz-reset-requirements {
	margin-bottom: 20px;
	padding: 12px 16px;
	font-size: 13px;
	color: #999;
	text-align: center;
	background: #f9f9f9;
	border-radius: 6px;
	line-height: 1.5;
}

/* Botão Principal */
.spz-reset-button {
	width: 100% !important;
	max-width: 100% !important;
	padding: 14px 24px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
	display: block !important;
	margin-bottom: 12px;
	margin-left: 0 !important;
	margin-right: 0 !important;
	background: #6EC1E4;
	color: #ffffff;
	box-sizing: border-box;
	float: none !important;
}

.spz-reset-button:hover {
	background: #5eb0d3;
}

.spz-reset-button:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* Loading State */
.spz-reset-button.loading {
	position: relative;
	color: transparent;
	pointer-events: none;
}

.spz-reset-button.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid transparent;
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: spz-reset-spin 0.6s linear infinite;
}

@keyframes spz-reset-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Mensagens */
.spz-reset-message {
	padding: 15px 15px;
	margin-top: 25px;
	margin-bottom: 25px;
	font-size: 14px;
	border-radius: 15px;
	display: none;
	line-height: 1.5;
}

.spz-reset-message.show {
	display: block;
}

.spz-reset-message-success {
	background: #A080D8;
	color: #1e1e1e;
	border: 1px solid #A080D8;
}

.spz-reset-message-error {
	background: #A080D8;
	color: #1e1e1e;
	border: 1px solid #A080D8;
}

/* Responsivo - MOBILE */
@media (max-width: 768px) {
	.spz-reset-password-widget {
		padding: 24px;
	}
	
	.spz-reset-title {
		font-size: 20px;
	}
	
	.spz-reset-button {
		font-size: 15px;
		padding: 12px 20px;
	}
}