/**
 * Public-facing styles for User Activation System
 *
 * @package    User_Activation_System
 * @subpackage User_Activation_System/public
 */

/* Password Reset Form Styles */
.uas-password-reset-form {
	max-width: 400px;
	margin: 40px auto;
	padding: 30px;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.uas-form-title {
	margin: 0 0 10px 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	color: #23282d;
}

.uas-form-description {
	margin: 0 0 20px 0;
	color: #646970;
	font-size: 14px;
	line-height: 1.6;
}

.uas-form {
	margin: 0;
}

.uas-form-field {
	margin: 0 0 20px 0;
}

.uas-form-label {
	display: block;
	margin: 0 0 8px 0;
	font-weight: 600;
	font-size: 14px;
	color: #23282d;
	line-height: 1.4;
}

.uas-form-input {
	width: 100%;
	padding: 8px 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #2c3338;
	background-color: #fff;
	border: 1px solid #8c8f94;
	border-radius: 3px;
	box-shadow: 0 0 0 transparent;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.uas-form-input:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: 2px solid transparent;
}

.uas-form-input:disabled {
	background-color: #f0f0f1;
	border-color: #dcdcde;
	color: #50575e;
	cursor: not-allowed;
}

.uas-form-submit {
	margin: 25px 0 0 0;
}

.uas-form-button {
	width: 100%;
	padding: 10px 20px;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	cursor: pointer;
	border-radius: 3px;
	transition: all 0.15s ease-in-out;
}

.uas-form-footer {
	margin: 20px 0 0 0;
	text-align: center;
}

.uas-form-link {
	color: #2271b1;
	text-decoration: none;
	font-size: 14px;
}

.uas-form-link:hover {
	color: #135e96;
	text-decoration: underline;
}

/* Password Strength Indicator */
.uas-password-strength {
	margin: 10px 0;
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 3px;
	background: #f0f0f1;
}

.uas-password-strength.pass-weak {
	background: #fbeaea;
	color: #dc3232;
}

.uas-password-strength.pass-medium {
	background: #fff8e5;
	color: #dba617;
}

.uas-password-strength.pass-strong {
	background: #ecf7ed;
	color: #46b450;
}

/* Messages */
.uas-password-reset-message {
	padding: 12px 16px;
	margin: 0 0 20px 0;
	border-left: 4px solid;
	border-radius: 3px;
	font-size: 14px;
	line-height: 1.6;
}

.uas-message-success {
	border-left-color: #46b450;
	background: #ecf7ed;
	color: #1e4620;
}

.uas-message-error {
	border-left-color: #dc3232;
	background: #fbeaea;
	color: #8a2424;
}

.uas-password-reset-error {
	padding: 12px 16px;
	margin: 0 0 20px 0;
	border-left: 4px solid #dc3232;
	border-radius: 3px;
	background: #fbeaea;
	color: #8a2424;
	font-size: 14px;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
	.uas-password-reset-form {
		margin: 20px;
		padding: 20px;
	}
	
	.uas-form-title {
		font-size: 20px;
	}
}
