:root {
	--fba-primary: #6f1610;
	--fba-secondary: #062e3a;
	--fba-bg: #f7f7f7;
	--fba-border: #e5e5e5;
	--fba-text: #1c1c1c;
	--fba-white: #ffffff;
}

/* =========================
   WRAPPER
========================= */

.fba-auth-box {
	max-width: 60%;
	margin: 40px auto;
	padding: 28px;
	background: var(--fba-white);
	border: 1px solid var(--fba-border)!important;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05)!important;
	font-family: inherit;
}

.sidebar_right .fba-auth-box {
    max-width:none;
}

/* =========================
   HEADINGS / TEXT
========================= */

.fba-auth-heading {
    text-align:center;
}

.fba-auth-box p {
	margin: 12px 0;
	color: var(--fba-text);
}

.fba-auth-error {
	background: #ffe6e6;
	border: 1px solid var(--fba-primary);
	color: var(--fba-primary);
	padding: 10px 12px;
	border-radius: 8px;
	margin-bottom: 15px;
	font-size: 13px;
}

.fba-success {
	background: #e8f5ee;
	border: 1px solid #2e7d32;
	color: #2e7d32;
	padding: 10px 12px;
	border-radius: 8px;
	margin-bottom: 15px;
	font-size: 13px;
}

/* =========================
   FORM
========================= */

.fba-auth-box form p {
	margin-bottom: 16px;
}

.fba-auth-box label {
	display: block;
	font-size: 13px;
	margin-bottom: 6px;
	color: var(--fba-secondary);
	font-weight: 600;
}

/* Inputs */
.fba-auth-box input[type="text"],
.fba-auth-box input[type="password"],
.fba-auth-box input[type="email"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--fba-border);
	border-radius: 8px;
	font-size: 14px;
	transition: 0.2s ease;
	background: var(--fba-white);
}

/* Focus State */
.fba-auth-box input:focus {
	border-color: var(--fba-secondary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(6, 46, 58, 0.15);
}

/* =========================
   BUTTON
========================= */

.fba-auth-box button {
	width: 100%;
	padding: 11px 14px;
	background: var(--fba-primary);
	color: var(--fba-white);
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
    font-family: inherit;
}

.fba-auth-box button:hover {
	background: var(--fba-secondary);
	transform: translateY(-1px);
}

.fba-auth-box button:active {
	transform: translateY(0);
}

/* =========================
   LINKS
========================= */

.fba-auth-links {
	margin-top: 14px;
	text-align: center;
	font-size: 13px;
}

.fba-auth-links a,
.fba-auth-box a {
	color: var(--fba-secondary);
	text-decoration: none;
	font-weight: 600;
}

.fba-auth-links a:hover,
.fba-auth-box a:hover {
	color: var(--fba-primary);
	text-decoration: underline;
}

/* =========================
   LOGGED IN BOX
========================= */

.fba-auth-logged-in {
	text-align: center;
}

/* =========================
   LOGOUT LINK
========================= */

.fba-logout-link {
	display: inline-block;
	margin-top: 10px;
	color: var(--fba-primary);
	font-weight: 600;
}

/* =========================
   MOBILE
========================= */

@media (max-width:767px) {
    .fba-auth-box {
        max-width:none;
    }
}

@media (max-width: 480px) {
	.fba-auth-box {
		margin: 20px 15px;
		padding: 20px;
	}
}