/**
 * Easy Plugin Demo Styles
 *
 * @package		EPD
 * @subpackage  CSS
 * @copyright   Copyright (c) 2018, Mike Howard
 * @license		http://opensource.org/licenses/gpl-2.0.php GNU Public License
*/
@charset "UTF-8";

/**
 * 1. General
 * 2. Error alerts
 * 3. Registration form fields
*/

/**
 * 1. General Styling
-------------------------------------------------------------- */
.epd_hidden	{ display: none; }

.epd_clearfix:after {
	display: block;
	visibility: hidden;
	float: none;
	clear: both;
	text-indent: -9999px;
	content: ".";
}

/**
 * 2. Error alerts
-------------------------------------------------------------- */
.epd_alert {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	margin-bottom: 20px;
	padding: 10px;
	border: 1px solid transparent;
	vertical-align: middle;
}
.epd_alert p {
	padding: 0;
}
.epd_alert p:not(:last-child) {
	margin-bottom: 5px;
}
.epd_alert p:last-child {
	margin-bottom: 0;
}
.epd_alert_error {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}
.epd_alert_success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color:#3c763d;
}
.epd_alert_info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}
.epd_alert_warn {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}
.epd-input.error	{
	border-color: #c4554e !important;
}
/**
 * 3. Registration form
-------------------------------------------------------------- */
#epd_register_form fieldset legend {
	padding-left: 1.5px;
	padding-right: 1.5px;
	font-weight: bold;
}

#epd_register_form .epd-input,
#epd_register_form label {
	display: inline-block;
	width: 200px;
}

#epd-recaptcha	{
	margin-bottom: 10px;
}
