.bm-guestbook {
    max-width: 100%;
}

.bm-guestbook h2{
	font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5em;
    color: #000;
}

.bm-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
	margin-bottom: 60px;
}

.bm-form textarea, .cf-turnstile, .bm-form button{
    grid-column: 1 / -1;
}

.bm-form input,
.bm-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #000;
    border-radius: 0px;
	background: transparent;
	font-size: 1rem;
    line-height: 1em;
	margin: 0;
}

.bm-form textarea {
    min-height: 160px;
    resize: vertical;
}

.bm-form input[type=text], .bm-form input[type=email]{
	border: 1px solid #000;
    border-radius: 0px;
	background: transparent;
	padding: 14px;
}

.bm-form button {
    padding: 12px 20px;
    cursor: pointer;
    width: fit-content;
    border-radius: 0px;
    border: 1px solid #000;
    font-weight: 500;
	line-height: 1.4em;
	background: #ededed !important;
	color: #000;
	 -webkit-appearance: none;
    appearance: none;
}

.bm-comments{
	margin-bottom: 80px;
}

.bm-comment {
    border-bottom: 1px solid #e6e6e6;
    background: #ededed;
    border: 1px solid #434343;
    padding: 30px 30px 20px 30px;
    margin-bottom: 30px;
}

.bm-comment h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 700;
}

.bm-comment-date {
    font-size: 1rem;
	font-weight: 500;
    opacity: 0.7;
    white-space: nowrap;
	padding-left: 12px;
}

.bm-success {
    color: #000;
	font-weight: 600;
    margin-bottom: 20px;
}

.bm-error {
    color: #b00020;
    margin-bottom: 20px;
}

@media (max-width: 620px) {
	.bm-form input[type=text], .bm-form input[type=email]{
		grid-column: 1 / -1;
	}

}