.donativo {
	display: flex;
	align-items: center;
}

.euro {
	font-size: 22px;
	font-weight: 700;
}

.donativo-valor {
	border-radius: 11px;
	min-width: 50%;
	margin: 0 20px;
	text-align: center;
	border: 0;
	font-size: 12px;
	height: 40px;
	outline: 0;
}

	.donativo-valor:focus {
		border: 1px solid #6e6e6f;
	}

.donativo-botao {
	/*border-radius: 11px;*/
	border: 0;
	background-color: #6e6e6f;
	color: #fff;
	font-weight: 700;
	height: 40px;
	outline: 0;
	cursor: pointer;
	min-width: 15%;
	padding: 0px 15px;
}

	.donativo-botao:hover {
		background-color: #fff;
		color: #6e6e6f;
		text-decoration: none;
	}

.linhaLink {
	line-height: 40px;
}

@media (max-width: 375px) {
    .euro {
        font-size: 20px;
    }
    .donativo-valor {
        height: 30px;
    }
    .donativo-botao {
        height: 30px;
    }
    .linhaLink {
        line-height: 30px;
    }
}