/* Biedrs Login and Registration Styles */

.biedrs-login-page,
.biedrs-registration-page {
	max-width: 600px;
	margin: 40px auto;
	padding: 20px;
}

.biedrs-login-container,
.biedrs-registration-container {
	background: #fff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.biedrs-login-container h1,
.biedrs-registration-container h1 {
	margin-top: 0;
	margin-bottom: 30px;
	color: #333;
}

.biedrs-registration-container h2 {
	margin-top: 30px;
	margin-bottom: 20px;
	color: #555;
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
}

.biedrs-message {
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
}

.biedrs-message.biedrs-success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.biedrs-message.biedrs-error {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.biedrs-message ul {
	margin: 0;
	padding-left: 20px;
}

.biedrs-login-form p,
.biedrs-registration-form p {
	margin-bottom: 20px;
}

.biedrs-login-form label,
.biedrs-registration-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #333;
}

.biedrs-login-form input[type="email"],
.biedrs-login-form input[type="password"],
.biedrs-registration-form input[type="text"],
.biedrs-registration-form input[type="email"],
.biedrs-registration-form input[type="password"],
.biedrs-registration-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
}

.biedrs-registration-form textarea {
	resize: vertical;
	min-height: 80px;
}

.biedrs-registration-form .required {
	color: #d63638;
}

.biedrs-registration-form small {
	display: block;
	margin-top: 5px;
	color: #666;
	font-size: 14px;
}

.biedrs-submit-button {
	background-color: #2271b1;
	color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.biedrs-submit-button:hover {
	background-color: #135e96;
}

.biedrs-register-link,
.biedrs-login-link {
	text-align: center;
	margin-top: 20px;
}

.biedrs-register-link a,
.biedrs-login-link a {
	color: #2271b1;
	text-decoration: none;
}

.biedrs-register-link a:hover,
.biedrs-login-link a:hover {
	text-decoration: underline;
}

.biedrs-access-denied {
	padding: 20px;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	color: #721c24;
	margin: 20px 0;
}

.biedrs-access-denied a {
	color: #2271b1;
	text-decoration: underline;
}

.biedrs-already-logged-in {
	padding: 15px;
	background-color: #d1ecf1;
	border: 1px solid #bee5eb;
	border-radius: 4px;
	color: #0c5460;
	margin: 20px 0;
}

.biedrs-already-logged-in a {
	color: #2271b1;
	text-decoration: underline;
}

/* Biedrs Profile Page Styles */

.biedrs-profile-page {
	max-width: 800px;
	margin: 40px auto;
	padding: 20px;
}

.biedrs-profile-container {
	background: #fff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.biedrs-profile-container h1 {
	margin-top: 0;
	margin-bottom: 30px;
	color: #333;
}

.biedrs-profile-container h2 {
	margin-top: 30px;
	margin-bottom: 20px;
	color: #555;
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
}

.biedrs-profile-form p {
	margin-bottom: 20px;
}

.biedrs-profile-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #333;
}

.biedrs-profile-form input[type="text"],
.biedrs-profile-form input[type="email"],
.biedrs-profile-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
}

.biedrs-profile-form textarea {
	resize: vertical;
	min-height: 80px;
}

.biedrs-profile-form input[readonly] {
	background-color: #f5f5f5;
	cursor: not-allowed;
}

.biedrs-profile-form .required {
	color: #d63638;
}

.biedrs-profile-form small {
	display: block;
	margin-top: 5px;
	color: #666;
	font-size: 14px;
}

.biedrs-profile-message {
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
}

.biedrs-profile-message.biedrs-error {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.biedrs-profile-message.biedrs-error a {
	color: #2271b1;
	text-decoration: underline;
}

.biedrs-password-note {
	margin-bottom: 15px;
	padding: 10px;
	background-color: #f0f0f1;
	border-left: 4px solid #2271b1;
}

.biedrs-password-note small {
	color: #50575e;
	font-style: italic;
}

