.bm-form p {
	margin-bottom: 16px;
}

.bm-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}

.bm-form input[type="text"],
.bm-form input[type="email"],
.bm-form input[type="password"],
.bm-form textarea {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
}

.bm-form textarea {
	min-height: 80px;
}

.bm-button,
.bm-form button[type="submit"] {
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
}

.bm-success {
	background: #edfaef;
	border: 1px solid #46b450;
	color: #1d6c2e;
	padding: 10px 14px;
	border-radius: 4px;
	margin-bottom: 16px;
}

.bm-errors {
	background: #fbeaea;
	border: 1px solid #dc3232;
	color: #8a1f1f;
	padding: 10px 14px;
	border-radius: 4px;
	margin-bottom: 16px;
}

.bm-form  span.required{
    color: #dc3232
}

.bm-errors ul {
	margin: 0;
	padding-left: 18px;
}

.bm-profile-readonly {
	background: #f6f7f7;
	border: 1px solid #e2e4e7;
	border-radius: 4px;
	padding: 12px 16px;
	margin-bottom: 20px;
}

.bm-notification {
	border: 1px solid #e2e4e7;
	border-radius: 4px;
	padding: 12px 16px;
	margin-bottom: 12px;
}

.bm-notification h4 {
	margin: 0 0 6px;
}

.bm-notification small {
	color: #666;
}

.bm-tab-nav {
	display: flex;
	gap: 8px;
	border-bottom: 1px solid #bdbdbd;
	margin-bottom: 20px;
        position: relative;
}

.bm-tab-btn {
	background: none;
	border: none;
	padding: 10px 30px;
	font-size: 16px;
	font-weight: 600;
	color: #111518;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}

.bm-tab-btn.active {
	color: #714508;
        background: #ffcd05;
    border-radius: 5px 5px 0 0;
}

.bm-tab-panel {
	display: none;
}

.bm-tab-panel.active {
	display: block;
}

.bm-funding-table {
	width: 100%;
	max-width: 600px;
	border-collapse: collapse;
}

.bm-funding-table th{
    background: #d9edf7;
    color: #111;
}
.bm-funding-table th,
.bm-funding-table td {
	border: 1px solid #e2e4e7;
	padding: 8px 12px;
	text-align: left;
}

.bm-funding-table tfoot th {
	background: #f6f7f7;
}

.bm-funding-table th:last-child,
.bm-funding-table td:last-child {
    text-align: right
}

.bm-tab-nav .bm-logout-row{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-bottom: 0;
}
.bm-tab-nav .bm-logout-row a.bm-button{
    color: #111518;
    font-size: 16px;
}
.bm-tab-nav .bm-logout-row a.bm-button:hover{
    color: #ffcd05;
}