.contact__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

main.contact-page section.contact-section {
	display: flex;
	flex-flow: column;
	min-height: inherit;
	justify-content: space-between;
}

main.contact-page section.contact-section .container.contact-container {
	margin: 0 auto;
}

@media (min-width: 991px) {
    main.contact-page .login {
        margin-bottom: 50px;
    }
}

.contact__addresses {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.contact__block {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	flex-wrap: wrap;
}

.contact__address {
	flex: 1;
	margin: 10px;
	min-width: 280px;
	max-width: 400px;
	/* Optional: to limit the maximum width */
	box-sizing: border-box;
	text-align: center;
	/* Center the content inside the address */
}

.contact__address a {
	color: var(--color-text-secondary);
	transition: all .2s cubic-bezier(.4, 0, .2, 1);
	text-decoration: none;
}

.contact__address a:hover {
	color: var(--color-text-primary);
}

.textarea-container {
	position: relative;
	width: 100%;
}

.textarea-container textarea {
	width: 100%;
	height: 100px;
	padding: 10px;
	box-sizing: border-box;
}

.textarea-container .placeholder {
	position: absolute;
	top: 12px;
	left: 14px;
	font-size: 14px;
	font-family: var(--font-body-family);
	color: var(--color-text-secondary);
	pointer-events: none;
}

.textarea-container textarea:focus+.placeholder,
.textarea-container textarea:not(:placeholder-shown)+.placeholder {
	display: none;
}

@media (max-width: 768px) {
	.contact__block {
		flex-direction: column;
		align-items: center;
	}

	.contact__address {
		margin: 10px 0;
	}
}
